home *** CD-ROM | disk | FTP | other *** search
- ; File: AIIGSRecords.aii
- ;
- ;
- ; Copyright Apple computer, Inc. 1986-89
- ; All Rights Reserved
- ;
- ;
- MACRO
- &lab Str255 &textLength,&text
- AIF C:&textLength,.p1
- LCLA &textLength
- .p1
- AIF C:&text,.p2
- LCLA &text
- .p2
- &lab DS 0
- &lab._textLength DC i1'&textLength'
- &lab._text DC i1'&text'
- MEND
- MACRO
- &lab Str32 &length,&text
- AIF C:&length,.p1
- LCLA &length
- .p1
- AIF C:&text,.p2
- LCLA &text
- .p2
- &lab DS 0
- &lab._length DC i1'&length'
- &lab._text DC i1'&text'
- MEND
- MACRO
- &lab Point &v,&h
- AIF C:&v,.p1
- LCLA &v
- .p1
- AIF C:&h,.p2
- LCLA &h
- .p2
- &lab DS 0
- &lab._v DC i2'&v'
- &lab._h DC i2'&h'
- MEND
- MACRO
- &lab Rect &v1,&h1,&v2,&h2
- AIF C:&v1,.p1
- LCLA &v1
- .p1
- AIF C:&h1,.p2
- LCLA &h1
- .p2
- AIF C:&v2,.p3
- LCLA &v2
- .p3
- AIF C:&h2,.p4
- LCLA &h2
- .p4
- &lab DS 0
- &lab._v1 DC i2'&v1'
- &lab._h1 DC i2'&h1'
- &lab._v2 DC i2'&v2'
- &lab._h2 DC i2'&h2'
- MEND
- MACRO
- &lab TimeRec &second,&minute,&hour,&year,&day,&month,&extra,&weekDay
- AIF C:&second,.p1
- LCLA &second
- .p1
- AIF C:&minute,.p2
- LCLA &minute
- .p2
- AIF C:&hour,.p3
- LCLA &hour
- .p3
- AIF C:&year,.p4
- LCLA &year
- .p4
- AIF C:&day,.p5
- LCLA &day
- .p5
- AIF C:&month,.p6
- LCLA &month
- .p6
- AIF C:&extra,.p7
- LCLA &extra
- .p7
- AIF C:&weekDay,.p8
- LCLA &weekDay
- .p8
- &lab DS 0
- &lab._second DC i1'&second'
- &lab._minute DC i1'&minute'
- &lab._hour DC i1'&hour'
- &lab._year DC i1'&year'
- &lab._day DC i1'&day'
- &lab._month DC i1'&month'
- &lab._extra DC i1'&extra'
- &lab._weekDay DC i1'&weekDay'
- MEND
- MACRO
- &lab Cursor &cursorHeight,&cursorWidth,&cursorData,&cursorMask,&cursorHotSpot_v,&cursorHotSpot_h
- AIF C:&cursorHeight,.p1
- LCLA &cursorHeight
- .p1
- AIF C:&cursorWidth,.p2
- LCLA &cursorWidth
- .p2
- AIF C:&cursorData,.p3
- LCLA &cursorData
- .p3
- AIF C:&cursorMask,.p4
- LCLA &cursorMask
- .p4
- AIF C:&cursorHotSpot_v,.p5
- LCLA &cursorHotSpot_v
- .p5
- AIF C:&cursorHotSpot_h,.p6
- LCLA &cursorHotSpot_h
- .p6
- &lab DS 0
- &lab._cursorHeight DC i2'&cursorHeight'
- &lab._cursorWidth DC i2'&cursorWidth'
- &lab._cursorData DC i2'&cursorData'
- &lab._cursorMask DC i2'&cursorMask'
- &lab._cursorHotSpot Point &cursorHotSpot_v,&cursorHotSpot_h
- MEND
- MACRO
- &lab Region &rgnSize,&rgnBBox_v1,&rgnBBox_h1,&rgnBBox_v2,&rgnBBox_h2
- AIF C:&rgnSize,.p1
- LCLA &rgnSize
- .p1
- AIF C:&rgnBBox_v1,.p2
- LCLA &rgnBBox_v1
- .p2
- AIF C:&rgnBBox_h1,.p3
- LCLA &rgnBBox_h1
- .p3
- AIF C:&rgnBBox_v2,.p4
- LCLA &rgnBBox_v2
- .p4
- AIF C:&rgnBBox_h2,.p5
- LCLA &rgnBBox_h2
- .p5
- &lab DS 0
- &lab._rgnSize DC i2'&rgnSize'
- &lab._rgnBBox Rect &rgnBBox_v1,&rgnBBox_h1,&rgnBBox_v2,&rgnBBox_h2
- MEND
- MACRO
- &lab BufDimRec &maxWidth,&textBufHeight,&textBufferWords,&fontWidth
- AIF C:&maxWidth,.p1
- LCLA &maxWidth
- .p1
- AIF C:&textBufHeight,.p2
- LCLA &textBufHeight
- .p2
- AIF C:&textBufferWords,.p3
- LCLA &textBufferWords
- .p3
- AIF C:&fontWidth,.p4
- LCLA &fontWidth
- .p4
- &lab DS 0
- &lab._maxWidth DC i2'&maxWidth'
- &lab._textBufHeight DC i2'&textBufHeight'
- &lab._textBufferWords DC i2'&textBufferWords'
- &lab._fontWidth DC i2'&fontWidth'
- MEND
- MACRO
- &lab Font &offseToMF,&family,&style,&size,&version,&fbrExtent,&highowTLoc
- AIF C:&offseToMF,.p1
- LCLA &offseToMF
- .p1
- AIF C:&family,.p2
- LCLA &family
- .p2
- AIF C:&style,.p3
- LCLA &style
- .p3
- AIF C:&size,.p4
- LCLA &size
- .p4
- AIF C:&version,.p5
- LCLA &version
- .p5
- AIF C:&fbrExtent,.p6
- LCLA &fbrExtent
- .p6
- AIF C:&highowTLoc,.p7
- LCLA &highowTLoc
- .p7
- &lab DS 0
- &lab._offseToMF DC i2'&offseToMF'
- &lab._family DC i2'&family'
- &lab._style DC i2'&style'
- &lab._size DC i2'&size'
- &lab._version DC i2'&version'
- &lab._fbrExtent DC i2'&fbrExtent'
- &lab._highowTLoc DC i2'&highowTLoc'
- MEND
- MACRO
- &lab FontGlobalsRecord &fgFontID,&fgStyle,&fgSize,&fgVersion,&fgWidMax,&fgFBRExtent
- AIF C:&fgFontID,.p1
- LCLA &fgFontID
- .p1
- AIF C:&fgStyle,.p2
- LCLA &fgStyle
- .p2
- AIF C:&fgSize,.p3
- LCLA &fgSize
- .p3
- AIF C:&fgVersion,.p4
- LCLA &fgVersion
- .p4
- AIF C:&fgWidMax,.p5
- LCLA &fgWidMax
- .p5
- AIF C:&fgFBRExtent,.p6
- LCLA &fgFBRExtent
- .p6
- &lab DS 0
- &lab._fgFontID DC i2'&fgFontID'
- &lab._fgStyle DC i2'&fgStyle'
- &lab._fgSize DC i2'&fgSize'
- &lab._fgVersion DC i2'&fgVersion'
- &lab._fgWidMax DC i2'&fgWidMax'
- &lab._fgFBRExtent DC i2'&fgFBRExtent'
- MEND
- MACRO
- &lab FontID &famNum,&fontStyle,&fontSize
- AIF C:&famNum,.p1
- LCLA &famNum
- .p1
- AIF C:&fontStyle,.p2
- LCLA &fontStyle
- .p2
- AIF C:&fontSize,.p3
- LCLA &fontSize
- .p3
- &lab DS 0
- &lab._famNum DC i2'&famNum'
- &lab._fontStyle DC i1'&fontStyle'
- &lab._fontSize DC i1'&fontSize'
- MEND
- MACRO
- &lab FontInfoRecord &ascent,&descent,&widMax,&leading
- AIF C:&ascent,.p1
- LCLA &ascent
- .p1
- AIF C:&descent,.p2
- LCLA &descent
- .p2
- AIF C:&widMax,.p3
- LCLA &widMax
- .p3
- AIF C:&leading,.p4
- LCLA &leading
- .p4
- &lab DS 0
- &lab._ascent DC i2'&ascent'
- &lab._descent DC i2'&descent'
- &lab._widMax DC i2'&widMax'
- &lab._leading DC i2'&leading'
- MEND
- MACRO
- &lab LocInfo &portSCB,&ptrToPixImage,&width,&boundsRect_v1,&boundsRect_h1,&boundsRect_v2,&boundsRect_h2
- AIF C:&portSCB,.p1
- LCLA &portSCB
- .p1
- AIF C:&ptrToPixImage,.p2
- LCLA &ptrToPixImage
- .p2
- AIF C:&width,.p3
- LCLA &width
- .p3
- AIF C:&boundsRect_v1,.p4
- LCLA &boundsRect_v1
- .p4
- AIF C:&boundsRect_h1,.p5
- LCLA &boundsRect_h1
- .p5
- AIF C:&boundsRect_v2,.p6
- LCLA &boundsRect_v2
- .p6
- AIF C:&boundsRect_h2,.p7
- LCLA &boundsRect_h2
- .p7
- &lab DS 0
- &lab._portSCB DC i2'&portSCB'
- &lab._ptrToPixImage DC i4'&ptrToPixImage'
- &lab._width DC i2'&width'
- &lab._boundsRect Rect &boundsRect_v1,&boundsRect_h1,&boundsRect_v2,&boundsRect_h2
- MEND
- MACRO
- &lab QDProcs &stdText,&stdLine,&stdRect,&stdRRect,&stdOval,&stdArc,&stdPoly,&stdRgn,&stdPixels,&stdComment,&stdTxMeas,&stdTxBnds,&stdGetPic,&stdPutPic
- AIF C:&stdText,.p1
- LCLA &stdText
- .p1
- AIF C:&stdLine,.p2
- LCLA &stdLine
- .p2
- AIF C:&stdRect,.p3
- LCLA &stdRect
- .p3
- AIF C:&stdRRect,.p4
- LCLA &stdRRect
- .p4
- AIF C:&stdOval,.p5
- LCLA &stdOval
- .p5
- AIF C:&stdArc,.p6
- LCLA &stdArc
- .p6
- AIF C:&stdPoly,.p7
- LCLA &stdPoly
- .p7
- AIF C:&stdRgn,.p8
- LCLA &stdRgn
- .p8
- AIF C:&stdPixels,.p9
- LCLA &stdPixels
- .p9
- AIF C:&stdComment,.p10
- LCLA &stdComment
- .p10
- AIF C:&stdTxMeas,.p11
- LCLA &stdTxMeas
- .p11
- AIF C:&stdTxBnds,.p12
- LCLA &stdTxBnds
- .p12
- AIF C:&stdGetPic,.p13
- LCLA &stdGetPic
- .p13
- AIF C:&stdPutPic,.p14
- LCLA &stdPutPic
- .p14
- &lab DS 0
- &lab._stdText DC i4'&stdText'
- &lab._stdLine DC i4'&stdLine'
- &lab._stdRect DC i4'&stdRect'
- &lab._stdRRect DC i4'&stdRRect'
- &lab._stdOval DC i4'&stdOval'
- &lab._stdArc DC i4'&stdArc'
- &lab._stdPoly DC i4'&stdPoly'
- &lab._stdRgn DC i4'&stdRgn'
- &lab._stdPixels DC i4'&stdPixels'
- &lab._stdComment DC i4'&stdComment'
- &lab._stdTxMeas DC i4'&stdTxMeas'
- &lab._stdTxBnds DC i4'&stdTxBnds'
- &lab._stdGetPic DC i4'&stdGetPic'
- &lab._stdPutPic DC i4'&stdPutPic'
- MEND
- MACRO
- &lab GrafPort &portInfo_portSCB,&portInfo_ptrToPixImage,&portInfo_width,&portInfo_boundsRect_v1,&portInfo_boundsRect_h1,&portInfo_boundsRect_v2,&portInfo_boundsRect_h2,&portRect_v1,&portRect_h1,&portRect_v2,&portRect_h2,&clipRgn,&visRgn,&bkPat,&pnLoc_v,&pnLoc_h,&pnSize_v,&pnSize_h,&pnMode,&pnPat,&pnMask,&pnVis,&fontHandle,&fontID_famNum,&fontID_fontStyle,&fontID_fontSize,&fontFlags,&txSize,&txFace,&txMode,&spExtra,&chExtra,&fgColor,&bgColor,&picSave,&rgnSave,&polySave,&grafProcs,&arcRot,&userField,&sysField
- AIF C:&portInfo_portSCB,.p1
- LCLA &portInfo_portSCB
- .p1
- AIF C:&portInfo_ptrToPixImage,.p2
- LCLA &portInfo_ptrToPixImage
- .p2
- AIF C:&portInfo_width,.p3
- LCLA &portInfo_width
- .p3
- AIF C:&portInfo_boundsRect_v1,.p4
- LCLA &portInfo_boundsRect_v1
- .p4
- AIF C:&portInfo_boundsRect_h1,.p5
- LCLA &portInfo_boundsRect_h1
- .p5
- AIF C:&portInfo_boundsRect_v2,.p6
- LCLA &portInfo_boundsRect_v2
- .p6
- AIF C:&portInfo_boundsRect_h2,.p7
- LCLA &portInfo_boundsRect_h2
- .p7
- AIF C:&portRect_v1,.p8
- LCLA &portRect_v1
- .p8
- AIF C:&portRect_h1,.p9
- LCLA &portRect_h1
- .p9
- AIF C:&portRect_v2,.p10
- LCLA &portRect_v2
- .p10
- AIF C:&portRect_h2,.p11
- LCLA &portRect_h2
- .p11
- AIF C:&clipRgn,.p12
- LCLA &clipRgn
- .p12
- AIF C:&visRgn,.p13
- LCLA &visRgn
- .p13
- AIF C:&bkPat,.p14
- LCLA &bkPat
- .p14
- AIF C:&pnLoc_v,.p15
- LCLA &pnLoc_v
- .p15
- AIF C:&pnLoc_h,.p16
- LCLA &pnLoc_h
- .p16
- AIF C:&pnSize_v,.p17
- LCLA &pnSize_v
- .p17
- AIF C:&pnSize_h,.p18
- LCLA &pnSize_h
- .p18
- AIF C:&pnMode,.p19
- LCLA &pnMode
- .p19
- AIF C:&pnPat,.p20
- LCLA &pnPat
- .p20
- AIF C:&pnMask,.p21
- LCLA &pnMask
- .p21
- AIF C:&pnVis,.p22
- LCLA &pnVis
- .p22
- AIF C:&fontHandle,.p23
- LCLA &fontHandle
- .p23
- AIF C:&fontID_famNum,.p24
- LCLA &fontID_famNum
- .p24
- AIF C:&fontID_fontStyle,.p25
- LCLA &fontID_fontStyle
- .p25
- AIF C:&fontID_fontSize,.p26
- LCLA &fontID_fontSize
- .p26
- AIF C:&fontFlags,.p27
- LCLA &fontFlags
- .p27
- AIF C:&txSize,.p28
- LCLA &txSize
- .p28
- AIF C:&txFace,.p29
- LCLA &txFace
- .p29
- AIF C:&txMode,.p30
- LCLA &txMode
- .p30
- AIF C:&spExtra,.p31
- LCLA &spExtra
- .p31
- AIF C:&chExtra,.p32
- LCLA &chExtra
- .p32
- AIF C:&fgColor,.p33
- LCLA &fgColor
- .p33
- AIF C:&bgColor,.p34
- LCLA &bgColor
- .p34
- AIF C:&picSave,.p35
- LCLA &picSave
- .p35
- AIF C:&rgnSave,.p36
- LCLA &rgnSave
- .p36
- AIF C:&polySave,.p37
- LCLA &polySave
- .p37
- AIF C:&grafProcs,.p38
- LCLA &grafProcs
- .p38
- AIF C:&arcRot,.p39
- LCLA &arcRot
- .p39
- AIF C:&userField,.p40
- LCLA &userField
- .p40
- AIF C:&sysField,.p41
- LCLA &sysField
- .p41
- &lab DS 0
- &lab._portInfo LocInfo &portInfo_portSCB,&portInfo_ptrToPixImage,&portInfo_width,&portInfo_boundsRect_v1,&portInfo_boundsRect_h1,&portInfo_boundsRect_v2,&portInfo_boundsRect_h2
- &lab._portRect Rect &portRect_v1,&portRect_h1,&portRect_v2,&portRect_h2
- &lab._clipRgn DC i4'&clipRgn'
- &lab._visRgn DC i4'&visRgn'
- &lab._bkPat DC i32'&bkPat'
- &lab._pnLoc Point &pnLoc_v,&pnLoc_h
- &lab._pnSize Point &pnSize_v,&pnSize_h
- &lab._pnMode DC i2'&pnMode'
- &lab._pnPat DC i32'&pnPat'
- &lab._pnMask DC i8'&pnMask'
- &lab._pnVis DC i2'&pnVis'
- &lab._fontHandle DC i4'&fontHandle'
- &lab._fontID FontID &fontID_famNum,&fontID_fontStyle,&fontID_fontSize
- &lab._fontFlags DC i2'&fontFlags'
- &lab._txSize DC i2'&txSize'
- &lab._txFace DC i2'&txFace'
- &lab._txMode DC i2'&txMode'
- &lab._spExtra DC i4'&spExtra'
- &lab._chExtra DC i4'&chExtra'
- &lab._fgColor DC i2'&fgColor'
- &lab._bgColor DC i2'&bgColor'
- &lab._picSave DC i4'&picSave'
- &lab._rgnSave DC i4'&rgnSave'
- &lab._polySave DC i4'&polySave'
- &lab._grafProcs DC i4'&grafProcs'
- &lab._arcRot DC i2'&arcRot'
- &lab._userField DC i4'&userField'
- &lab._sysField DC i4'&sysField'
- MEND
- MACRO
- &lab PaintParam &ptrToSourceLocInfo,&ptrToDestLocInfo,&ptrToSourceRect,&ptrToDestPoint,&mode,&maskHandle
- AIF C:&ptrToSourceLocInfo,.p1
- LCLA &ptrToSourceLocInfo
- .p1
- AIF C:&ptrToDestLocInfo,.p2
- LCLA &ptrToDestLocInfo
- .p2
- AIF C:&ptrToSourceRect,.p3
- LCLA &ptrToSourceRect
- .p3
- AIF C:&ptrToDestPoint,.p4
- LCLA &ptrToDestPoint
- .p4
- AIF C:&mode,.p5
- LCLA &mode
- .p5
- AIF C:&maskHandle,.p6
- LCLA &maskHandle
- .p6
- &lab DS 0
- &lab._ptrToSourceLocInfo DC i4'&ptrToSourceLocInfo'
- &lab._ptrToDestLocInfo DC i4'&ptrToDestLocInfo'
- &lab._ptrToSourceRect DC i4'&ptrToSourceRect'
- &lab._ptrToDestPoint DC i4'&ptrToDestPoint'
- &lab._mode DC i2'&mode'
- &lab._maskHandle DC i4'&maskHandle'
- MEND
- MACRO
- &lab PenState &psPenLoc_v,&psPenLoc_h,&psPenSize_v,&psPenSize_h,&psPenMode,&psPenPat,&psPenMask
- AIF C:&psPenLoc_v,.p1
- LCLA &psPenLoc_v
- .p1
- AIF C:&psPenLoc_h,.p2
- LCLA &psPenLoc_h
- .p2
- AIF C:&psPenSize_v,.p3
- LCLA &psPenSize_v
- .p3
- AIF C:&psPenSize_h,.p4
- LCLA &psPenSize_h
- .p4
- AIF C:&psPenMode,.p5
- LCLA &psPenMode
- .p5
- AIF C:&psPenPat,.p6
- LCLA &psPenPat
- .p6
- AIF C:&psPenMask,.p7
- LCLA &psPenMask
- .p7
- &lab DS 0
- &lab._psPenLoc Point &psPenLoc_v,&psPenLoc_h
- &lab._psPenSize Point &psPenSize_v,&psPenSize_h
- &lab._psPenMode DC i2'&psPenMode'
- &lab._psPenPat DC i32'&psPenPat'
- &lab._psPenMask DC i8'&psPenMask'
- MEND
- MACRO
- &lab RomFontRec &rfFamNum,&rfFamStyle,&rfSize,&rfFontHandle,&rfNamePtr,&rfFBRExtent
- AIF C:&rfFamNum,.p1
- LCLA &rfFamNum
- .p1
- AIF C:&rfFamStyle,.p2
- LCLA &rfFamStyle
- .p2
- AIF C:&rfSize,.p3
- LCLA &rfSize
- .p3
- AIF C:&rfFontHandle,.p4
- LCLA &rfFontHandle
- .p4
- AIF C:&rfNamePtr,.p5
- LCLA &rfNamePtr
- .p5
- AIF C:&rfFBRExtent,.p6
- LCLA &rfFBRExtent
- .p6
- &lab DS 0
- &lab._rfFamNum DC i2'&rfFamNum'
- &lab._rfFamStyle DC i2'&rfFamStyle'
- &lab._rfSize DC i2'&rfSize'
- &lab._rfFontHandle DC i4'&rfFontHandle'
- &lab._rfNamePtr DC i4'&rfNamePtr'
- &lab._rfFBRExtent DC i2'&rfFBRExtent'
- MEND
- MACRO
- &lab ColorTable &entries
- AIF C:&entries,.p1
- LCLA &entries
- .p1
- &lab DS 0
- &lab._entries DC i2'&entries'
- MEND
- MACRO
- &lab ClampRec &yMaxClamp,&yMinClamp,&xMaxClamp,&xMinClamp
- AIF C:&yMaxClamp,.p1
- LCLA &yMaxClamp
- .p1
- AIF C:&yMinClamp,.p2
- LCLA &yMinClamp
- .p2
- AIF C:&xMaxClamp,.p3
- LCLA &xMaxClamp
- .p3
- AIF C:&xMinClamp,.p4
- LCLA &xMinClamp
- .p4
- &lab DS 0
- &lab._yMaxClamp DC i2'&yMaxClamp'
- &lab._yMinClamp DC i2'&yMinClamp'
- &lab._xMaxClamp DC i2'&xMaxClamp'
- &lab._xMinClamp DC i2'&xMinClamp'
- MEND
- MACRO
- &lab FWRec &yRegExit,&xRegExit,&aRegExit,&status
- AIF C:&yRegExit,.p1
- LCLA &yRegExit
- .p1
- AIF C:&xRegExit,.p2
- LCLA &xRegExit
- .p2
- AIF C:&aRegExit,.p3
- LCLA &aRegExit
- .p3
- AIF C:&status,.p4
- LCLA &status
- .p4
- &lab DS 0
- &lab._yRegExit DC i2'&yRegExit'
- &lab._xRegExit DC i2'&xRegExit'
- &lab._aRegExit DC i2'&aRegExit'
- &lab._status DC i2'&status'
- MEND
- MACRO
- &lab MouseRec &mouseMode,&mouseStatus,&yPos,&xPos
- AIF C:&mouseMode,.p1
- LCLA &mouseMode
- .p1
- AIF C:&mouseStatus,.p2
- LCLA &mouseStatus
- .p2
- AIF C:&yPos,.p3
- LCLA &yPos
- .p3
- AIF C:&xPos,.p4
- LCLA &xPos
- .p4
- &lab DS 0
- &lab._mouseMode DC i1'&mouseMode'
- &lab._mouseStatus DC i1'&mouseStatus'
- &lab._yPos DC i2'&yPos'
- &lab._xPos DC i2'&xPos'
- MEND
- MACRO
- &lab InterruptStateRec &irq_A,&irq_X,&irq_Y,&irq_S,&irq_D,&irq_P,&irq_DB,&irq_e,&irq_K,&irq_PC,&irq_state,&irq_shadow,&irq_mslot
- AIF C:&irq_A,.p1
- LCLA &irq_A
- .p1
- AIF C:&irq_X,.p2
- LCLA &irq_X
- .p2
- AIF C:&irq_Y,.p3
- LCLA &irq_Y
- .p3
- AIF C:&irq_S,.p4
- LCLA &irq_S
- .p4
- AIF C:&irq_D,.p5
- LCLA &irq_D
- .p5
- AIF C:&irq_P,.p6
- LCLA &irq_P
- .p6
- AIF C:&irq_DB,.p7
- LCLA &irq_DB
- .p7
- AIF C:&irq_e,.p8
- LCLA &irq_e
- .p8
- AIF C:&irq_K,.p9
- LCLA &irq_K
- .p9
- AIF C:&irq_PC,.p10
- LCLA &irq_PC
- .p10
- AIF C:&irq_state,.p11
- LCLA &irq_state
- .p11
- AIF C:&irq_shadow,.p12
- LCLA &irq_shadow
- .p12
- AIF C:&irq_mslot,.p13
- LCLA &irq_mslot
- .p13
- &lab DS 0
- &lab._irq_A DC i2'&irq_A'
- &lab._irq_X DC i2'&irq_X'
- &lab._irq_Y DC i2'&irq_Y'
- &lab._irq_S DC i2'&irq_S'
- &lab._irq_D DC i2'&irq_D'
- &lab._irq_P DC i1'&irq_P'
- &lab._irq_DB DC i1'&irq_DB'
- &lab._irq_e DC i1'&irq_e'
- &lab._irq_K DC i1'&irq_K'
- &lab._irq_PC DC i2'&irq_PC'
- &lab._irq_state DC i1'&irq_state'
- &lab._irq_shadow DC i2'&irq_shadow'
- &lab._irq_mslot DC i1'&irq_mslot'
- MEND
- MACRO
- &lab QueueHeaderRec &qNext,&reserved,&signature
- AIF C:&qNext,.p1
- LCLA &qNext
- .p1
- AIF C:&reserved,.p2
- LCLA &reserved
- .p2
- AIF C:&signature,.p3
- LCLA &signature
- .p3
- &lab DS 0
- &lab._qNext DC i4'&qNext'
- &lab._reserved DC i2'&reserved'
- &lab._signature DC i2'&signature'
- MEND
- MACRO
- &lab EventRecord &what,&message,&when,&where_v,&where_h,&modifiers,&wmTaskData,&wmTaskMask,&wmLastClickTick,&wmClickCount,&wmTaskData2,&wmTaskData3,&wmTaskData4,&wmLastClickPt_v,&wmLastClickPt_h
- AIF C:&what,.p1
- LCLA &what
- .p1
- AIF C:&message,.p2
- LCLA &message
- .p2
- AIF C:&when,.p3
- LCLA &when
- .p3
- AIF C:&where_v,.p4
- LCLA &where_v
- .p4
- AIF C:&where_h,.p5
- LCLA &where_h
- .p5
- AIF C:&modifiers,.p6
- LCLA &modifiers
- .p6
- AIF C:&wmTaskData,.p7
- LCLA &wmTaskData
- .p7
- AIF C:&wmTaskMask,.p8
- LCLA &wmTaskMask
- .p8
- AIF C:&wmLastClickTick,.p9
- LCLA &wmLastClickTick
- .p9
- AIF C:&wmClickCount,.p10
- LCLA &wmClickCount
- .p10
- AIF C:&wmTaskData2,.p11
- LCLA &wmTaskData2
- .p11
- AIF C:&wmTaskData3,.p12
- LCLA &wmTaskData3
- .p12
- AIF C:&wmTaskData4,.p13
- LCLA &wmTaskData4
- .p13
- AIF C:&wmLastClickPt_v,.p14
- LCLA &wmLastClickPt_v
- .p14
- AIF C:&wmLastClickPt_h,.p15
- LCLA &wmLastClickPt_h
- .p15
- &lab DS 0
- &lab._what DC i2'&what'
- &lab._message DC i4'&message'
- &lab._when DC i4'&when'
- &lab._where Point &where_v,&where_h
- &lab._modifiers DC i2'&modifiers'
- &lab._wmTaskData DC i4'&wmTaskData'
- &lab._wmTaskMask DC i4'&wmTaskMask'
- &lab._wmLastClickTick DC i4'&wmLastClickTick'
- &lab._wmClickCount DC i2'&wmClickCount'
- &lab._wmTaskData2 DC i4'&wmTaskData2'
- &lab._wmTaskData3 DC i4'&wmTaskData3'
- &lab._wmTaskData4 DC i4'&wmTaskData4'
- &lab._wmLastClickPt Point &wmLastClickPt_v,&wmLastClickPt_h
- MEND
- MACRO
- &lab EventJournalRec &statusMode,&yLocation,&xLocation
- AIF C:&statusMode,.p1
- LCLA &statusMode
- .p1
- AIF C:&yLocation,.p2
- LCLA &yLocation
- .p2
- AIF C:&xLocation,.p3
- LCLA &xLocation
- .p3
- &lab DS 0
- &lab._statusMode DC i2'&statusMode'
- &lab._yLocation DC i2'&yLocation'
- &lab._xLocation DC i2'&xLocation'
- MEND
- MACRO
- &lab BarColors &barOutline,&barNorArrow,&barSelArrow,&barArrowBack,&barNorThumb,&barSelThumb,&barPageRgn,&barInactive
- AIF C:&barOutline,.p1
- LCLA &barOutline
- .p1
- AIF C:&barNorArrow,.p2
- LCLA &barNorArrow
- .p2
- AIF C:&barSelArrow,.p3
- LCLA &barSelArrow
- .p3
- AIF C:&barArrowBack,.p4
- LCLA &barArrowBack
- .p4
- AIF C:&barNorThumb,.p5
- LCLA &barNorThumb
- .p5
- AIF C:&barSelThumb,.p6
- LCLA &barSelThumb
- .p6
- AIF C:&barPageRgn,.p7
- LCLA &barPageRgn
- .p7
- AIF C:&barInactive,.p8
- LCLA &barInactive
- .p8
- &lab DS 0
- &lab._barOutline DC i2'&barOutline'
- &lab._barNorArrow DC i2'&barNorArrow'
- &lab._barSelArrow DC i2'&barSelArrow'
- &lab._barArrowBack DC i2'&barArrowBack'
- &lab._barNorThumb DC i2'&barNorThumb'
- &lab._barSelThumb DC i2'&barSelThumb'
- &lab._barPageRgn DC i2'&barPageRgn'
- &lab._barInactive DC i2'&barInactive'
- MEND
- MACRO
- &lab BoxColors &boxReserved,&boxNor,&boxSel,&boxTitle
- AIF C:&boxReserved,.p1
- LCLA &boxReserved
- .p1
- AIF C:&boxNor,.p2
- LCLA &boxNor
- .p2
- AIF C:&boxSel,.p3
- LCLA &boxSel
- .p3
- AIF C:&boxTitle,.p4
- LCLA &boxTitle
- .p4
- &lab DS 0
- &lab._boxReserved DC i2'&boxReserved'
- &lab._boxNor DC i2'&boxNor'
- &lab._boxSel DC i2'&boxSel'
- &lab._boxTitle DC i2'&boxTitle'
- MEND
- MACRO
- &lab BttnColors &bttnOutline,&bttnNorBack,&bttnSelBack,&bttnNorText,&bttnSelText
- AIF C:&bttnOutline,.p1
- LCLA &bttnOutline
- .p1
- AIF C:&bttnNorBack,.p2
- LCLA &bttnNorBack
- .p2
- AIF C:&bttnSelBack,.p3
- LCLA &bttnSelBack
- .p3
- AIF C:&bttnNorText,.p4
- LCLA &bttnNorText
- .p4
- AIF C:&bttnSelText,.p5
- LCLA &bttnSelText
- .p5
- &lab DS 0
- &lab._bttnOutline DC i2'&bttnOutline'
- &lab._bttnNorBack DC i2'&bttnNorBack'
- &lab._bttnSelBack DC i2'&bttnSelBack'
- &lab._bttnNorText DC i2'&bttnNorText'
- &lab._bttnSelText DC i2'&bttnSelText'
- MEND
- MACRO
- &lab CtlRec &ctlNext,&ctlOwner,&ctlRect_v1,&ctlRect_h1,&ctlRect_v2,&ctlRect_h2,&ctlFlag,&ctlHilite,&ctlValue,&ctlProc,&ctlAction,&ctlData,&ctlRefCon,&ctlColor,&ctlReserved,&ctlID,&ctlMoreFlags,&ctlVersion
- AIF C:&ctlNext,.p1
- LCLA &ctlNext
- .p1
- AIF C:&ctlOwner,.p2
- LCLA &ctlOwner
- .p2
- AIF C:&ctlRect_v1,.p3
- LCLA &ctlRect_v1
- .p3
- AIF C:&ctlRect_h1,.p4
- LCLA &ctlRect_h1
- .p4
- AIF C:&ctlRect_v2,.p5
- LCLA &ctlRect_v2
- .p5
- AIF C:&ctlRect_h2,.p6
- LCLA &ctlRect_h2
- .p6
- AIF C:&ctlFlag,.p7
- LCLA &ctlFlag
- .p7
- AIF C:&ctlHilite,.p8
- LCLA &ctlHilite
- .p8
- AIF C:&ctlValue,.p9
- LCLA &ctlValue
- .p9
- AIF C:&ctlProc,.p10
- LCLA &ctlProc
- .p10
- AIF C:&ctlAction,.p11
- LCLA &ctlAction
- .p11
- AIF C:&ctlData,.p12
- LCLA &ctlData
- .p12
- AIF C:&ctlRefCon,.p13
- LCLA &ctlRefCon
- .p13
- AIF C:&ctlColor,.p14
- LCLA &ctlColor
- .p14
- AIF C:&ctlReserved,.p15
- LCLA &ctlReserved
- .p15
- AIF C:&ctlID,.p16
- LCLA &ctlID
- .p16
- AIF C:&ctlMoreFlags,.p17
- LCLA &ctlMoreFlags
- .p17
- AIF C:&ctlVersion,.p18
- LCLA &ctlVersion
- .p18
- &lab DS 0
- &lab._ctlNext DC i4'&ctlNext'
- &lab._ctlOwner DC i4'&ctlOwner'
- &lab._ctlRect Rect &ctlRect_v1,&ctlRect_h1,&ctlRect_v2,&ctlRect_h2
- &lab._ctlFlag DC i1'&ctlFlag'
- &lab._ctlHilite DC i1'&ctlHilite'
- &lab._ctlValue DC i2'&ctlValue'
- &lab._ctlProc DC i4'&ctlProc'
- &lab._ctlAction DC i4'&ctlAction'
- &lab._ctlData DC i4'&ctlData'
- &lab._ctlRefCon DC i4'&ctlRefCon'
- &lab._ctlColor DC i4'&ctlColor'
- &lab._ctlReserved DC i1'&ctlReserved'
- &lab._ctlID DC i4'&ctlID'
- &lab._ctlMoreFlags DC i2'&ctlMoreFlags'
- &lab._ctlVersion DC i2'&ctlVersion'
- MEND
- MACRO
- &lab LimitBlk &boundRect_v1,&boundRect_h1,&boundRect_v2,&boundRect_h2,&slopRect_v1,&slopRect_h1,&slopRect_v2,&slopRect_h2,&axisParam,&dragPatt
- AIF C:&boundRect_v1,.p1
- LCLA &boundRect_v1
- .p1
- AIF C:&boundRect_h1,.p2
- LCLA &boundRect_h1
- .p2
- AIF C:&boundRect_v2,.p3
- LCLA &boundRect_v2
- .p3
- AIF C:&boundRect_h2,.p4
- LCLA &boundRect_h2
- .p4
- AIF C:&slopRect_v1,.p5
- LCLA &slopRect_v1
- .p5
- AIF C:&slopRect_h1,.p6
- LCLA &slopRect_h1
- .p6
- AIF C:&slopRect_v2,.p7
- LCLA &slopRect_v2
- .p7
- AIF C:&slopRect_h2,.p8
- LCLA &slopRect_h2
- .p8
- AIF C:&axisParam,.p9
- LCLA &axisParam
- .p9
- AIF C:&dragPatt,.p10
- LCLA &dragPatt
- .p10
- &lab DS 0
- &lab._boundRect Rect &boundRect_v1,&boundRect_h1,&boundRect_v2,&boundRect_h2
- &lab._slopRect Rect &slopRect_v1,&slopRect_h1,&slopRect_v2,&slopRect_h2
- &lab._axisParam DC i2'&axisParam'
- &lab._dragPatt DC i4'&dragPatt'
- MEND
- MACRO
- &lab RadioColors &radReserved,&radNor,&radSel,&radTitle
- AIF C:&radReserved,.p1
- LCLA &radReserved
- .p1
- AIF C:&radNor,.p2
- LCLA &radNor
- .p2
- AIF C:&radSel,.p3
- LCLA &radSel
- .p3
- AIF C:&radTitle,.p4
- LCLA &radTitle
- .p4
- &lab DS 0
- &lab._radReserved DC i2'&radReserved'
- &lab._radNor DC i2'&radNor'
- &lab._radSel DC i2'&radSel'
- &lab._radTitle DC i2'&radTitle'
- MEND
- MACRO
- &lab KeystrokeRec &key1,&key2,&keyModifiers,&keyCareBits
- AIF C:&key1,.p1
- LCLA &key1
- .p1
- AIF C:&key2,.p2
- LCLA &key2
- .p2
- AIF C:&keyModifiers,.p3
- LCLA &keyModifiers
- .p3
- AIF C:&keyCareBits,.p4
- LCLA &keyCareBits
- .p4
- &lab DS 0
- &lab._key1 DC i1'&key1'
- &lab._key2 DC i1'&key2'
- &lab._keyModifiers DC i2'&keyModifiers'
- &lab._keyCareBits DC i2'&keyCareBits'
- MEND
- MACRO
- &lab ControlTemplate &pCount,&ID,&rect_v1,&rect_h1,&rect_v2,&rect_h2,&procRef,&flag,&moreFlags,&refCon
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&ID,.p2
- LCLA &ID
- .p2
- AIF C:&rect_v1,.p3
- LCLA &rect_v1
- .p3
- AIF C:&rect_h1,.p4
- LCLA &rect_h1
- .p4
- AIF C:&rect_v2,.p5
- LCLA &rect_v2
- .p5
- AIF C:&rect_h2,.p6
- LCLA &rect_h2
- .p6
- AIF C:&procRef,.p7
- LCLA &procRef
- .p7
- AIF C:&flag,.p8
- LCLA &flag
- .p8
- AIF C:&moreFlags,.p9
- LCLA &moreFlags
- .p9
- AIF C:&refCon,.p10
- LCLA &refCon
- .p10
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._ID DC i4'&ID'
- &lab._rect Rect &rect_v1,&rect_h1,&rect_v2,&rect_h2
- &lab._procRef DC i4'&procRef'
- &lab._flag DC i2'&flag'
- &lab._moreFlags DC i2'&moreFlags'
- &lab._refCon DC i4'&refCon'
- MEND
- MACRO
- &lab SimpleButtonTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon,&titleRef,&colorTableRef,&keyEquivalent_key1,&keyEquivalent_key2,&keyEquivalent_keyModifiers,&keyEquivalent_keyCareBits
- AIF C:&ctlTemplate_pCount,.p1
- LCLA &ctlTemplate_pCount
- .p1
- AIF C:&ctlTemplate_ID,.p2
- LCLA &ctlTemplate_ID
- .p2
- AIF C:&ctlTemplate_rect_v1,.p3
- LCLA &ctlTemplate_rect_v1
- .p3
- AIF C:&ctlTemplate_rect_h1,.p4
- LCLA &ctlTemplate_rect_h1
- .p4
- AIF C:&ctlTemplate_rect_v2,.p5
- LCLA &ctlTemplate_rect_v2
- .p5
- AIF C:&ctlTemplate_rect_h2,.p6
- LCLA &ctlTemplate_rect_h2
- .p6
- AIF C:&ctlTemplate_procRef,.p7
- LCLA &ctlTemplate_procRef
- .p7
- AIF C:&ctlTemplate_flag,.p8
- LCLA &ctlTemplate_flag
- .p8
- AIF C:&ctlTemplate_moreFlags,.p9
- LCLA &ctlTemplate_moreFlags
- .p9
- AIF C:&ctlTemplate_refCon,.p10
- LCLA &ctlTemplate_refCon
- .p10
- AIF C:&titleRef,.p11
- LCLA &titleRef
- .p11
- AIF C:&colorTableRef,.p12
- LCLA &colorTableRef
- .p12
- AIF C:&keyEquivalent_key1,.p13
- LCLA &keyEquivalent_key1
- .p13
- AIF C:&keyEquivalent_key2,.p14
- LCLA &keyEquivalent_key2
- .p14
- AIF C:&keyEquivalent_keyModifiers,.p15
- LCLA &keyEquivalent_keyModifiers
- .p15
- AIF C:&keyEquivalent_keyCareBits,.p16
- LCLA &keyEquivalent_keyCareBits
- .p16
- &lab DS 0
- &lab._ctlTemplate ControlTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon
- &lab._titleRef DC i4'&titleRef'
- &lab._colorTableRef DC i4'&colorTableRef'
- &lab._keyEquivalent KeystrokeRec &keyEquivalent_key1,&keyEquivalent_key2,&keyEquivalent_keyModifiers,&keyEquivalent_keyCareBits
- MEND
- MACRO
- &lab CheckBoxTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon,&titleRef,&initalValue,&colorTableRef,&keyEquivalent_key1,&keyEquivalent_key2,&keyEquivalent_keyModifiers,&keyEquivalent_keyCareBits
- AIF C:&ctlTemplate_pCount,.p1
- LCLA &ctlTemplate_pCount
- .p1
- AIF C:&ctlTemplate_ID,.p2
- LCLA &ctlTemplate_ID
- .p2
- AIF C:&ctlTemplate_rect_v1,.p3
- LCLA &ctlTemplate_rect_v1
- .p3
- AIF C:&ctlTemplate_rect_h1,.p4
- LCLA &ctlTemplate_rect_h1
- .p4
- AIF C:&ctlTemplate_rect_v2,.p5
- LCLA &ctlTemplate_rect_v2
- .p5
- AIF C:&ctlTemplate_rect_h2,.p6
- LCLA &ctlTemplate_rect_h2
- .p6
- AIF C:&ctlTemplate_procRef,.p7
- LCLA &ctlTemplate_procRef
- .p7
- AIF C:&ctlTemplate_flag,.p8
- LCLA &ctlTemplate_flag
- .p8
- AIF C:&ctlTemplate_moreFlags,.p9
- LCLA &ctlTemplate_moreFlags
- .p9
- AIF C:&ctlTemplate_refCon,.p10
- LCLA &ctlTemplate_refCon
- .p10
- AIF C:&titleRef,.p11
- LCLA &titleRef
- .p11
- AIF C:&initalValue,.p12
- LCLA &initalValue
- .p12
- AIF C:&colorTableRef,.p13
- LCLA &colorTableRef
- .p13
- AIF C:&keyEquivalent_key1,.p14
- LCLA &keyEquivalent_key1
- .p14
- AIF C:&keyEquivalent_key2,.p15
- LCLA &keyEquivalent_key2
- .p15
- AIF C:&keyEquivalent_keyModifiers,.p16
- LCLA &keyEquivalent_keyModifiers
- .p16
- AIF C:&keyEquivalent_keyCareBits,.p17
- LCLA &keyEquivalent_keyCareBits
- .p17
- &lab DS 0
- &lab._ctlTemplate ControlTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon
- &lab._titleRef DC i4'&titleRef'
- &lab._initalValue DC i2'&initalValue'
- &lab._colorTableRef DC i4'&colorTableRef'
- &lab._keyEquivalent KeystrokeRec &keyEquivalent_key1,&keyEquivalent_key2,&keyEquivalent_keyModifiers,&keyEquivalent_keyCareBits
- MEND
- MACRO
- &lab IconButtonTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon,&iconRef,&titleRef,&colorTableRef,&displayMode,&keyEquivalent_key1,&keyEquivalent_key2,&keyEquivalent_keyModifiers,&keyEquivalent_keyCareBits
- AIF C:&ctlTemplate_pCount,.p1
- LCLA &ctlTemplate_pCount
- .p1
- AIF C:&ctlTemplate_ID,.p2
- LCLA &ctlTemplate_ID
- .p2
- AIF C:&ctlTemplate_rect_v1,.p3
- LCLA &ctlTemplate_rect_v1
- .p3
- AIF C:&ctlTemplate_rect_h1,.p4
- LCLA &ctlTemplate_rect_h1
- .p4
- AIF C:&ctlTemplate_rect_v2,.p5
- LCLA &ctlTemplate_rect_v2
- .p5
- AIF C:&ctlTemplate_rect_h2,.p6
- LCLA &ctlTemplate_rect_h2
- .p6
- AIF C:&ctlTemplate_procRef,.p7
- LCLA &ctlTemplate_procRef
- .p7
- AIF C:&ctlTemplate_flag,.p8
- LCLA &ctlTemplate_flag
- .p8
- AIF C:&ctlTemplate_moreFlags,.p9
- LCLA &ctlTemplate_moreFlags
- .p9
- AIF C:&ctlTemplate_refCon,.p10
- LCLA &ctlTemplate_refCon
- .p10
- AIF C:&iconRef,.p11
- LCLA &iconRef
- .p11
- AIF C:&titleRef,.p12
- LCLA &titleRef
- .p12
- AIF C:&colorTableRef,.p13
- LCLA &colorTableRef
- .p13
- AIF C:&displayMode,.p14
- LCLA &displayMode
- .p14
- AIF C:&keyEquivalent_key1,.p15
- LCLA &keyEquivalent_key1
- .p15
- AIF C:&keyEquivalent_key2,.p16
- LCLA &keyEquivalent_key2
- .p16
- AIF C:&keyEquivalent_keyModifiers,.p17
- LCLA &keyEquivalent_keyModifiers
- .p17
- AIF C:&keyEquivalent_keyCareBits,.p18
- LCLA &keyEquivalent_keyCareBits
- .p18
- &lab DS 0
- &lab._ctlTemplate ControlTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon
- &lab._iconRef DC i4'&iconRef'
- &lab._titleRef DC i4'&titleRef'
- &lab._colorTableRef DC i4'&colorTableRef'
- &lab._displayMode DC i2'&displayMode'
- &lab._keyEquivalent KeystrokeRec &keyEquivalent_key1,&keyEquivalent_key2,&keyEquivalent_keyModifiers,&keyEquivalent_keyCareBits
- MEND
- MACRO
- &lab LineEditTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon,&maxSize,&defaultRef
- AIF C:&ctlTemplate_pCount,.p1
- LCLA &ctlTemplate_pCount
- .p1
- AIF C:&ctlTemplate_ID,.p2
- LCLA &ctlTemplate_ID
- .p2
- AIF C:&ctlTemplate_rect_v1,.p3
- LCLA &ctlTemplate_rect_v1
- .p3
- AIF C:&ctlTemplate_rect_h1,.p4
- LCLA &ctlTemplate_rect_h1
- .p4
- AIF C:&ctlTemplate_rect_v2,.p5
- LCLA &ctlTemplate_rect_v2
- .p5
- AIF C:&ctlTemplate_rect_h2,.p6
- LCLA &ctlTemplate_rect_h2
- .p6
- AIF C:&ctlTemplate_procRef,.p7
- LCLA &ctlTemplate_procRef
- .p7
- AIF C:&ctlTemplate_flag,.p8
- LCLA &ctlTemplate_flag
- .p8
- AIF C:&ctlTemplate_moreFlags,.p9
- LCLA &ctlTemplate_moreFlags
- .p9
- AIF C:&ctlTemplate_refCon,.p10
- LCLA &ctlTemplate_refCon
- .p10
- AIF C:&maxSize,.p11
- LCLA &maxSize
- .p11
- AIF C:&defaultRef,.p12
- LCLA &defaultRef
- .p12
- &lab DS 0
- &lab._ctlTemplate ControlTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon
- &lab._maxSize DC i2'&maxSize'
- &lab._defaultRef DC i4'&defaultRef'
- MEND
- MACRO
- &lab ListTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon,&listSize,&listView,&listType,&listStart,&listDraw,&listMemHeight,&listMemSize,&listRef,&colorTableRef
- AIF C:&ctlTemplate_pCount,.p1
- LCLA &ctlTemplate_pCount
- .p1
- AIF C:&ctlTemplate_ID,.p2
- LCLA &ctlTemplate_ID
- .p2
- AIF C:&ctlTemplate_rect_v1,.p3
- LCLA &ctlTemplate_rect_v1
- .p3
- AIF C:&ctlTemplate_rect_h1,.p4
- LCLA &ctlTemplate_rect_h1
- .p4
- AIF C:&ctlTemplate_rect_v2,.p5
- LCLA &ctlTemplate_rect_v2
- .p5
- AIF C:&ctlTemplate_rect_h2,.p6
- LCLA &ctlTemplate_rect_h2
- .p6
- AIF C:&ctlTemplate_procRef,.p7
- LCLA &ctlTemplate_procRef
- .p7
- AIF C:&ctlTemplate_flag,.p8
- LCLA &ctlTemplate_flag
- .p8
- AIF C:&ctlTemplate_moreFlags,.p9
- LCLA &ctlTemplate_moreFlags
- .p9
- AIF C:&ctlTemplate_refCon,.p10
- LCLA &ctlTemplate_refCon
- .p10
- AIF C:&listSize,.p11
- LCLA &listSize
- .p11
- AIF C:&listView,.p12
- LCLA &listView
- .p12
- AIF C:&listType,.p13
- LCLA &listType
- .p13
- AIF C:&listStart,.p14
- LCLA &listStart
- .p14
- AIF C:&listDraw,.p15
- LCLA &listDraw
- .p15
- AIF C:&listMemHeight,.p16
- LCLA &listMemHeight
- .p16
- AIF C:&listMemSize,.p17
- LCLA &listMemSize
- .p17
- AIF C:&listRef,.p18
- LCLA &listRef
- .p18
- AIF C:&colorTableRef,.p19
- LCLA &colorTableRef
- .p19
- &lab DS 0
- &lab._ctlTemplate ControlTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon
- &lab._listSize DC i2'&listSize'
- &lab._listView DC i2'&listView'
- &lab._listType DC i2'&listType'
- &lab._listStart DC i2'&listStart'
- &lab._listDraw DC i4'&listDraw'
- &lab._listMemHeight DC i2'&listMemHeight'
- &lab._listMemSize DC i2'&listMemSize'
- &lab._listRef DC i4'&listRef'
- &lab._colorTableRef DC i4'&colorTableRef'
- MEND
- MACRO
- &lab PictureTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon,&pictureRef
- AIF C:&ctlTemplate_pCount,.p1
- LCLA &ctlTemplate_pCount
- .p1
- AIF C:&ctlTemplate_ID,.p2
- LCLA &ctlTemplate_ID
- .p2
- AIF C:&ctlTemplate_rect_v1,.p3
- LCLA &ctlTemplate_rect_v1
- .p3
- AIF C:&ctlTemplate_rect_h1,.p4
- LCLA &ctlTemplate_rect_h1
- .p4
- AIF C:&ctlTemplate_rect_v2,.p5
- LCLA &ctlTemplate_rect_v2
- .p5
- AIF C:&ctlTemplate_rect_h2,.p6
- LCLA &ctlTemplate_rect_h2
- .p6
- AIF C:&ctlTemplate_procRef,.p7
- LCLA &ctlTemplate_procRef
- .p7
- AIF C:&ctlTemplate_flag,.p8
- LCLA &ctlTemplate_flag
- .p8
- AIF C:&ctlTemplate_moreFlags,.p9
- LCLA &ctlTemplate_moreFlags
- .p9
- AIF C:&ctlTemplate_refCon,.p10
- LCLA &ctlTemplate_refCon
- .p10
- AIF C:&pictureRef,.p11
- LCLA &pictureRef
- .p11
- &lab DS 0
- &lab._ctlTemplate ControlTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon
- &lab._pictureRef DC i4'&pictureRef'
- MEND
- MACRO
- &lab PopupTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon,&titleWidth,&menuRef,&initialValue,&colorTableRef
- AIF C:&ctlTemplate_pCount,.p1
- LCLA &ctlTemplate_pCount
- .p1
- AIF C:&ctlTemplate_ID,.p2
- LCLA &ctlTemplate_ID
- .p2
- AIF C:&ctlTemplate_rect_v1,.p3
- LCLA &ctlTemplate_rect_v1
- .p3
- AIF C:&ctlTemplate_rect_h1,.p4
- LCLA &ctlTemplate_rect_h1
- .p4
- AIF C:&ctlTemplate_rect_v2,.p5
- LCLA &ctlTemplate_rect_v2
- .p5
- AIF C:&ctlTemplate_rect_h2,.p6
- LCLA &ctlTemplate_rect_h2
- .p6
- AIF C:&ctlTemplate_procRef,.p7
- LCLA &ctlTemplate_procRef
- .p7
- AIF C:&ctlTemplate_flag,.p8
- LCLA &ctlTemplate_flag
- .p8
- AIF C:&ctlTemplate_moreFlags,.p9
- LCLA &ctlTemplate_moreFlags
- .p9
- AIF C:&ctlTemplate_refCon,.p10
- LCLA &ctlTemplate_refCon
- .p10
- AIF C:&titleWidth,.p11
- LCLA &titleWidth
- .p11
- AIF C:&menuRef,.p12
- LCLA &menuRef
- .p12
- AIF C:&initialValue,.p13
- LCLA &initialValue
- .p13
- AIF C:&colorTableRef,.p14
- LCLA &colorTableRef
- .p14
- &lab DS 0
- &lab._ctlTemplate ControlTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon
- &lab._titleWidth DC i2'&titleWidth'
- &lab._menuRef DC i4'&menuRef'
- &lab._initialValue DC i2'&initialValue'
- &lab._colorTableRef DC i4'&colorTableRef'
- MEND
- MACRO
- &lab RadioButtonTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon,&titleRef,&initalValue,&colorTableRef,&keyEquivalent_key1,&keyEquivalent_key2,&keyEquivalent_keyModifiers,&keyEquivalent_keyCareBits
- AIF C:&ctlTemplate_pCount,.p1
- LCLA &ctlTemplate_pCount
- .p1
- AIF C:&ctlTemplate_ID,.p2
- LCLA &ctlTemplate_ID
- .p2
- AIF C:&ctlTemplate_rect_v1,.p3
- LCLA &ctlTemplate_rect_v1
- .p3
- AIF C:&ctlTemplate_rect_h1,.p4
- LCLA &ctlTemplate_rect_h1
- .p4
- AIF C:&ctlTemplate_rect_v2,.p5
- LCLA &ctlTemplate_rect_v2
- .p5
- AIF C:&ctlTemplate_rect_h2,.p6
- LCLA &ctlTemplate_rect_h2
- .p6
- AIF C:&ctlTemplate_procRef,.p7
- LCLA &ctlTemplate_procRef
- .p7
- AIF C:&ctlTemplate_flag,.p8
- LCLA &ctlTemplate_flag
- .p8
- AIF C:&ctlTemplate_moreFlags,.p9
- LCLA &ctlTemplate_moreFlags
- .p9
- AIF C:&ctlTemplate_refCon,.p10
- LCLA &ctlTemplate_refCon
- .p10
- AIF C:&titleRef,.p11
- LCLA &titleRef
- .p11
- AIF C:&initalValue,.p12
- LCLA &initalValue
- .p12
- AIF C:&colorTableRef,.p13
- LCLA &colorTableRef
- .p13
- AIF C:&keyEquivalent_key1,.p14
- LCLA &keyEquivalent_key1
- .p14
- AIF C:&keyEquivalent_key2,.p15
- LCLA &keyEquivalent_key2
- .p15
- AIF C:&keyEquivalent_keyModifiers,.p16
- LCLA &keyEquivalent_keyModifiers
- .p16
- AIF C:&keyEquivalent_keyCareBits,.p17
- LCLA &keyEquivalent_keyCareBits
- .p17
- &lab DS 0
- &lab._ctlTemplate ControlTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon
- &lab._titleRef DC i4'&titleRef'
- &lab._initalValue DC i2'&initalValue'
- &lab._colorTableRef DC i4'&colorTableRef'
- &lab._keyEquivalent KeystrokeRec &keyEquivalent_key1,&keyEquivalent_key2,&keyEquivalent_keyModifiers,&keyEquivalent_keyCareBits
- MEND
- MACRO
- &lab ScrollBarTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon,&maxSize,&viewSize,&initalValue,&colorTableRef
- AIF C:&ctlTemplate_pCount,.p1
- LCLA &ctlTemplate_pCount
- .p1
- AIF C:&ctlTemplate_ID,.p2
- LCLA &ctlTemplate_ID
- .p2
- AIF C:&ctlTemplate_rect_v1,.p3
- LCLA &ctlTemplate_rect_v1
- .p3
- AIF C:&ctlTemplate_rect_h1,.p4
- LCLA &ctlTemplate_rect_h1
- .p4
- AIF C:&ctlTemplate_rect_v2,.p5
- LCLA &ctlTemplate_rect_v2
- .p5
- AIF C:&ctlTemplate_rect_h2,.p6
- LCLA &ctlTemplate_rect_h2
- .p6
- AIF C:&ctlTemplate_procRef,.p7
- LCLA &ctlTemplate_procRef
- .p7
- AIF C:&ctlTemplate_flag,.p8
- LCLA &ctlTemplate_flag
- .p8
- AIF C:&ctlTemplate_moreFlags,.p9
- LCLA &ctlTemplate_moreFlags
- .p9
- AIF C:&ctlTemplate_refCon,.p10
- LCLA &ctlTemplate_refCon
- .p10
- AIF C:&maxSize,.p11
- LCLA &maxSize
- .p11
- AIF C:&viewSize,.p12
- LCLA &viewSize
- .p12
- AIF C:&initalValue,.p13
- LCLA &initalValue
- .p13
- AIF C:&colorTableRef,.p14
- LCLA &colorTableRef
- .p14
- &lab DS 0
- &lab._ctlTemplate ControlTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon
- &lab._maxSize DC i2'&maxSize'
- &lab._viewSize DC i2'&viewSize'
- &lab._initalValue DC i2'&initalValue'
- &lab._colorTableRef DC i4'&colorTableRef'
- MEND
- MACRO
- &lab SizeBoxTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon,&colorTableRef
- AIF C:&ctlTemplate_pCount,.p1
- LCLA &ctlTemplate_pCount
- .p1
- AIF C:&ctlTemplate_ID,.p2
- LCLA &ctlTemplate_ID
- .p2
- AIF C:&ctlTemplate_rect_v1,.p3
- LCLA &ctlTemplate_rect_v1
- .p3
- AIF C:&ctlTemplate_rect_h1,.p4
- LCLA &ctlTemplate_rect_h1
- .p4
- AIF C:&ctlTemplate_rect_v2,.p5
- LCLA &ctlTemplate_rect_v2
- .p5
- AIF C:&ctlTemplate_rect_h2,.p6
- LCLA &ctlTemplate_rect_h2
- .p6
- AIF C:&ctlTemplate_procRef,.p7
- LCLA &ctlTemplate_procRef
- .p7
- AIF C:&ctlTemplate_flag,.p8
- LCLA &ctlTemplate_flag
- .p8
- AIF C:&ctlTemplate_moreFlags,.p9
- LCLA &ctlTemplate_moreFlags
- .p9
- AIF C:&ctlTemplate_refCon,.p10
- LCLA &ctlTemplate_refCon
- .p10
- AIF C:&colorTableRef,.p11
- LCLA &colorTableRef
- .p11
- &lab DS 0
- &lab._ctlTemplate ControlTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon
- &lab._colorTableRef DC i4'&colorTableRef'
- MEND
- MACRO
- &lab StaticTextTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon,&textRef,&textSize,&just
- AIF C:&ctlTemplate_pCount,.p1
- LCLA &ctlTemplate_pCount
- .p1
- AIF C:&ctlTemplate_ID,.p2
- LCLA &ctlTemplate_ID
- .p2
- AIF C:&ctlTemplate_rect_v1,.p3
- LCLA &ctlTemplate_rect_v1
- .p3
- AIF C:&ctlTemplate_rect_h1,.p4
- LCLA &ctlTemplate_rect_h1
- .p4
- AIF C:&ctlTemplate_rect_v2,.p5
- LCLA &ctlTemplate_rect_v2
- .p5
- AIF C:&ctlTemplate_rect_h2,.p6
- LCLA &ctlTemplate_rect_h2
- .p6
- AIF C:&ctlTemplate_procRef,.p7
- LCLA &ctlTemplate_procRef
- .p7
- AIF C:&ctlTemplate_flag,.p8
- LCLA &ctlTemplate_flag
- .p8
- AIF C:&ctlTemplate_moreFlags,.p9
- LCLA &ctlTemplate_moreFlags
- .p9
- AIF C:&ctlTemplate_refCon,.p10
- LCLA &ctlTemplate_refCon
- .p10
- AIF C:&textRef,.p11
- LCLA &textRef
- .p11
- AIF C:&textSize,.p12
- LCLA &textSize
- .p12
- AIF C:&just,.p13
- LCLA &just
- .p13
- &lab DS 0
- &lab._ctlTemplate ControlTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon
- &lab._textRef DC i4'&textRef'
- &lab._textSize DC i2'&textSize'
- &lab._just DC i2'&just'
- MEND
- MACRO
- &lab TextEditTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon,&textFlags,&indentRect_v1,&indentRect_h1,&indentRect_v2,&indentRect_h2,&vertBar,&vertAmount,&horzBar,&horzAmount,&styleRef,&textDescriptor,&textRef,&textLength,&maxChars,&maxLines,&maxCharsPerLine,&maxHeight,&colorRef,&drawMode,&filterProcPtr
- AIF C:&ctlTemplate_pCount,.p1
- LCLA &ctlTemplate_pCount
- .p1
- AIF C:&ctlTemplate_ID,.p2
- LCLA &ctlTemplate_ID
- .p2
- AIF C:&ctlTemplate_rect_v1,.p3
- LCLA &ctlTemplate_rect_v1
- .p3
- AIF C:&ctlTemplate_rect_h1,.p4
- LCLA &ctlTemplate_rect_h1
- .p4
- AIF C:&ctlTemplate_rect_v2,.p5
- LCLA &ctlTemplate_rect_v2
- .p5
- AIF C:&ctlTemplate_rect_h2,.p6
- LCLA &ctlTemplate_rect_h2
- .p6
- AIF C:&ctlTemplate_procRef,.p7
- LCLA &ctlTemplate_procRef
- .p7
- AIF C:&ctlTemplate_flag,.p8
- LCLA &ctlTemplate_flag
- .p8
- AIF C:&ctlTemplate_moreFlags,.p9
- LCLA &ctlTemplate_moreFlags
- .p9
- AIF C:&ctlTemplate_refCon,.p10
- LCLA &ctlTemplate_refCon
- .p10
- AIF C:&textFlags,.p11
- LCLA &textFlags
- .p11
- AIF C:&indentRect_v1,.p12
- LCLA &indentRect_v1
- .p12
- AIF C:&indentRect_h1,.p13
- LCLA &indentRect_h1
- .p13
- AIF C:&indentRect_v2,.p14
- LCLA &indentRect_v2
- .p14
- AIF C:&indentRect_h2,.p15
- LCLA &indentRect_h2
- .p15
- AIF C:&vertBar,.p16
- LCLA &vertBar
- .p16
- AIF C:&vertAmount,.p17
- LCLA &vertAmount
- .p17
- AIF C:&horzBar,.p18
- LCLA &horzBar
- .p18
- AIF C:&horzAmount,.p19
- LCLA &horzAmount
- .p19
- AIF C:&styleRef,.p20
- LCLA &styleRef
- .p20
- AIF C:&textDescriptor,.p21
- LCLA &textDescriptor
- .p21
- AIF C:&textRef,.p22
- LCLA &textRef
- .p22
- AIF C:&textLength,.p23
- LCLA &textLength
- .p23
- AIF C:&maxChars,.p24
- LCLA &maxChars
- .p24
- AIF C:&maxLines,.p25
- LCLA &maxLines
- .p25
- AIF C:&maxCharsPerLine,.p26
- LCLA &maxCharsPerLine
- .p26
- AIF C:&maxHeight,.p27
- LCLA &maxHeight
- .p27
- AIF C:&colorRef,.p28
- LCLA &colorRef
- .p28
- AIF C:&drawMode,.p29
- LCLA &drawMode
- .p29
- AIF C:&filterProcPtr,.p30
- LCLA &filterProcPtr
- .p30
- &lab DS 0
- &lab._ctlTemplate ControlTemplate &ctlTemplate_pCount,&ctlTemplate_ID,&ctlTemplate_rect_v1,&ctlTemplate_rect_h1,&ctlTemplate_rect_v2,&ctlTemplate_rect_h2,&ctlTemplate_procRef,&ctlTemplate_flag,&ctlTemplate_moreFlags,&ctlTemplate_refCon
- &lab._textFlags DC i4'&textFlags'
- &lab._indentRect Rect &indentRect_v1,&indentRect_h1,&indentRect_v2,&indentRect_h2
- &lab._vertBar DC i4'&vertBar'
- &lab._vertAmount DC i2'&vertAmount'
- &lab._horzBar DC i4'&horzBar'
- &lab._horzAmount DC i2'&horzAmount'
- &lab._styleRef DC i4'&styleRef'
- &lab._textDescriptor DC i2'&textDescriptor'
- &lab._textRef DC i4'&textRef'
- &lab._textLength DC i4'&textLength'
- &lab._maxChars DC i4'&maxChars'
- &lab._maxLines DC i4'&maxLines'
- &lab._maxCharsPerLine DC i2'&maxCharsPerLine'
- &lab._maxHeight DC i2'&maxHeight'
- &lab._colorRef DC i2'&colorRef'
- &lab._drawMode DC i4'&drawMode'
- &lab._filterProcPtr DC i4'&filterProcPtr'
- MEND
- MACRO
- &lab WindColor &frameColor,&titleColor,&tBarColor,&growColor,&infoColor
- AIF C:&frameColor,.p1
- LCLA &frameColor
- .p1
- AIF C:&titleColor,.p2
- LCLA &titleColor
- .p2
- AIF C:&tBarColor,.p3
- LCLA &tBarColor
- .p3
- AIF C:&growColor,.p4
- LCLA &growColor
- .p4
- AIF C:&infoColor,.p5
- LCLA &infoColor
- .p5
- &lab DS 0
- &lab._frameColor DC i2'&frameColor'
- &lab._titleColor DC i2'&titleColor'
- &lab._tBarColor DC i2'&tBarColor'
- &lab._growColor DC i2'&growColor'
- &lab._infoColor DC i2'&infoColor'
- MEND
- MACRO
- &lab WindRec &wNext,&port_portInfo_portSCB,&port_portInfo_ptrToPixImage,&port_portInfo_width,&port_portInfo_boundsRect_v1,&port_portInfo_boundsRect_h1,&port_portInfo_boundsRect_v2,&port_portInfo_boundsRect_h2,&port_portRect_v1,&port_portRect_h1,&port_portRect_v2,&port_portRect_h2,&port_clipRgn,&port_visRgn,&port_bkPat,&port_pnLoc_v,&port_pnLoc_h,&port_pnSize_v,&port_pnSize_h,&port_pnMode,&port_pnPat,&port_pnMask,&port_pnVis,&port_fontHandle,&port_fontID_famNum,&port_fontID_fontStyle,&port_fontID_fontSize,&port_fontFlags,&port_txSize,&port_txFace,&port_txMode,&port_spExtra,&port_chExtra,&port_fgColor,&port_bgColor,&port_picSave,&port_rgnSave,&port_polySave,&port_grafProcs,&port_arcRot,&port_userField,&port_sysField,&wDefProc,&wRefCon,&wContDraw,&wReserved,&wStrucRgn,&wContRgn,&wUpdateRgn,&wControls,&wFrameCtrls,&wFrame
- AIF C:&wNext,.p1
- LCLA &wNext
- .p1
- AIF C:&port_portInfo_portSCB,.p2
- LCLA &port_portInfo_portSCB
- .p2
- AIF C:&port_portInfo_ptrToPixImage,.p3
- LCLA &port_portInfo_ptrToPixImage
- .p3
- AIF C:&port_portInfo_width,.p4
- LCLA &port_portInfo_width
- .p4
- AIF C:&port_portInfo_boundsRect_v1,.p5
- LCLA &port_portInfo_boundsRect_v1
- .p5
- AIF C:&port_portInfo_boundsRect_h1,.p6
- LCLA &port_portInfo_boundsRect_h1
- .p6
- AIF C:&port_portInfo_boundsRect_v2,.p7
- LCLA &port_portInfo_boundsRect_v2
- .p7
- AIF C:&port_portInfo_boundsRect_h2,.p8
- LCLA &port_portInfo_boundsRect_h2
- .p8
- AIF C:&port_portRect_v1,.p9
- LCLA &port_portRect_v1
- .p9
- AIF C:&port_portRect_h1,.p10
- LCLA &port_portRect_h1
- .p10
- AIF C:&port_portRect_v2,.p11
- LCLA &port_portRect_v2
- .p11
- AIF C:&port_portRect_h2,.p12
- LCLA &port_portRect_h2
- .p12
- AIF C:&port_clipRgn,.p13
- LCLA &port_clipRgn
- .p13
- AIF C:&port_visRgn,.p14
- LCLA &port_visRgn
- .p14
- AIF C:&port_bkPat,.p15
- LCLA &port_bkPat
- .p15
- AIF C:&port_pnLoc_v,.p16
- LCLA &port_pnLoc_v
- .p16
- AIF C:&port_pnLoc_h,.p17
- LCLA &port_pnLoc_h
- .p17
- AIF C:&port_pnSize_v,.p18
- LCLA &port_pnSize_v
- .p18
- AIF C:&port_pnSize_h,.p19
- LCLA &port_pnSize_h
- .p19
- AIF C:&port_pnMode,.p20
- LCLA &port_pnMode
- .p20
- AIF C:&port_pnPat,.p21
- LCLA &port_pnPat
- .p21
- AIF C:&port_pnMask,.p22
- LCLA &port_pnMask
- .p22
- AIF C:&port_pnVis,.p23
- LCLA &port_pnVis
- .p23
- AIF C:&port_fontHandle,.p24
- LCLA &port_fontHandle
- .p24
- AIF C:&port_fontID_famNum,.p25
- LCLA &port_fontID_famNum
- .p25
- AIF C:&port_fontID_fontStyle,.p26
- LCLA &port_fontID_fontStyle
- .p26
- AIF C:&port_fontID_fontSize,.p27
- LCLA &port_fontID_fontSize
- .p27
- AIF C:&port_fontFlags,.p28
- LCLA &port_fontFlags
- .p28
- AIF C:&port_txSize,.p29
- LCLA &port_txSize
- .p29
- AIF C:&port_txFace,.p30
- LCLA &port_txFace
- .p30
- AIF C:&port_txMode,.p31
- LCLA &port_txMode
- .p31
- AIF C:&port_spExtra,.p32
- LCLA &port_spExtra
- .p32
- AIF C:&port_chExtra,.p33
- LCLA &port_chExtra
- .p33
- AIF C:&port_fgColor,.p34
- LCLA &port_fgColor
- .p34
- AIF C:&port_bgColor,.p35
- LCLA &port_bgColor
- .p35
- AIF C:&port_picSave,.p36
- LCLA &port_picSave
- .p36
- AIF C:&port_rgnSave,.p37
- LCLA &port_rgnSave
- .p37
- AIF C:&port_polySave,.p38
- LCLA &port_polySave
- .p38
- AIF C:&port_grafProcs,.p39
- LCLA &port_grafProcs
- .p39
- AIF C:&port_arcRot,.p40
- LCLA &port_arcRot
- .p40
- AIF C:&port_userField,.p41
- LCLA &port_userField
- .p41
- AIF C:&port_sysField,.p42
- LCLA &port_sysField
- .p42
- AIF C:&wDefProc,.p43
- LCLA &wDefProc
- .p43
- AIF C:&wRefCon,.p44
- LCLA &wRefCon
- .p44
- AIF C:&wContDraw,.p45
- LCLA &wContDraw
- .p45
- AIF C:&wReserved,.p46
- LCLA &wReserved
- .p46
- AIF C:&wStrucRgn,.p47
- LCLA &wStrucRgn
- .p47
- AIF C:&wContRgn,.p48
- LCLA &wContRgn
- .p48
- AIF C:&wUpdateRgn,.p49
- LCLA &wUpdateRgn
- .p49
- AIF C:&wControls,.p50
- LCLA &wControls
- .p50
- AIF C:&wFrameCtrls,.p51
- LCLA &wFrameCtrls
- .p51
- AIF C:&wFrame,.p52
- LCLA &wFrame
- .p52
- &lab DS 0
- &lab._wNext DC i4'&wNext'
- &lab._port GrafPort &port_portInfo_portSCB,&port_portInfo_ptrToPixImage,&port_portInfo_width,&port_portInfo_boundsRect_v1,&port_portInfo_boundsRect_h1,&port_portInfo_boundsRect_v2,&port_portInfo_boundsRect_h2,&port_portRect_v1,&port_portRect_h1,&port_portRect_v2,&port_portRect_h2,&port_clipRgn,&port_visRgn,&port_bkPat,&port_pnLoc_v,&port_pnLoc_h,&port_pnSize_v,&port_pnSize_h,&port_pnMode,&port_pnPat,&port_pnMask,&port_pnVis,&port_fontHandle,&port_fontID_famNum,&port_fontID_fontStyle,&port_fontID_fontSize,&port_fontFlags,&port_txSize,&port_txFace,&port_txMode,&port_spExtra,&port_chExtra,&port_fgColor,&port_bgColor,&port_picSave,&port_rgnSave,&port_polySave,&port_grafProcs,&port_arcRot,&port_userField,&port_sysField
- &lab._wDefProc DC i4'&wDefProc'
- &lab._wRefCon DC i4'&wRefCon'
- &lab._wContDraw DC i4'&wContDraw'
- &lab._wReserved DC i4'&wReserved'
- &lab._wStrucRgn DC i4'&wStrucRgn'
- &lab._wContRgn DC i4'&wContRgn'
- &lab._wUpdateRgn DC i4'&wUpdateRgn'
- &lab._wControls DC i4'&wControls'
- &lab._wFrameCtrls DC i4'&wFrameCtrls'
- &lab._wFrame DC i2'&wFrame'
- MEND
- MACRO
- &lab ParamList ¶mLength,&wFrameBits,&wTitle,&wRefCon,&wZoom_v1,&wZoom_h1,&wZoom_v2,&wZoom_h2,&wColor,&wYOrigin,&wXOrigin,&wDataH,&wDataW,&wMaxH,&wMaxW,&wScrollVer,&wScrollHor,&wPageVer,&wPageHor,&wInfoRefCon,&wInfoHeight,&wFrameDefProc,&wInfoDefProc,&wContDefProc,&wPosition_v1,&wPosition_h1,&wPosition_v2,&wPosition_h2,&wPlane,&wStorage
- AIF C:¶mLength,.p1
- LCLA ¶mLength
- .p1
- AIF C:&wFrameBits,.p2
- LCLA &wFrameBits
- .p2
- AIF C:&wTitle,.p3
- LCLA &wTitle
- .p3
- AIF C:&wRefCon,.p4
- LCLA &wRefCon
- .p4
- AIF C:&wZoom_v1,.p5
- LCLA &wZoom_v1
- .p5
- AIF C:&wZoom_h1,.p6
- LCLA &wZoom_h1
- .p6
- AIF C:&wZoom_v2,.p7
- LCLA &wZoom_v2
- .p7
- AIF C:&wZoom_h2,.p8
- LCLA &wZoom_h2
- .p8
- AIF C:&wColor,.p9
- LCLA &wColor
- .p9
- AIF C:&wYOrigin,.p10
- LCLA &wYOrigin
- .p10
- AIF C:&wXOrigin,.p11
- LCLA &wXOrigin
- .p11
- AIF C:&wDataH,.p12
- LCLA &wDataH
- .p12
- AIF C:&wDataW,.p13
- LCLA &wDataW
- .p13
- AIF C:&wMaxH,.p14
- LCLA &wMaxH
- .p14
- AIF C:&wMaxW,.p15
- LCLA &wMaxW
- .p15
- AIF C:&wScrollVer,.p16
- LCLA &wScrollVer
- .p16
- AIF C:&wScrollHor,.p17
- LCLA &wScrollHor
- .p17
- AIF C:&wPageVer,.p18
- LCLA &wPageVer
- .p18
- AIF C:&wPageHor,.p19
- LCLA &wPageHor
- .p19
- AIF C:&wInfoRefCon,.p20
- LCLA &wInfoRefCon
- .p20
- AIF C:&wInfoHeight,.p21
- LCLA &wInfoHeight
- .p21
- AIF C:&wFrameDefProc,.p22
- LCLA &wFrameDefProc
- .p22
- AIF C:&wInfoDefProc,.p23
- LCLA &wInfoDefProc
- .p23
- AIF C:&wContDefProc,.p24
- LCLA &wContDefProc
- .p24
- AIF C:&wPosition_v1,.p25
- LCLA &wPosition_v1
- .p25
- AIF C:&wPosition_h1,.p26
- LCLA &wPosition_h1
- .p26
- AIF C:&wPosition_v2,.p27
- LCLA &wPosition_v2
- .p27
- AIF C:&wPosition_h2,.p28
- LCLA &wPosition_h2
- .p28
- AIF C:&wPlane,.p29
- LCLA &wPlane
- .p29
- AIF C:&wStorage,.p30
- LCLA &wStorage
- .p30
- &lab DS 0
- &lab._paramLength DC i2'¶mLength'
- &lab._wFrameBits DC i2'&wFrameBits'
- &lab._wTitle DC i4'&wTitle'
- &lab._wRefCon DC i4'&wRefCon'
- &lab._wZoom Rect &wZoom_v1,&wZoom_h1,&wZoom_v2,&wZoom_h2
- &lab._wColor DC i4'&wColor'
- &lab._wYOrigin DC i2'&wYOrigin'
- &lab._wXOrigin DC i2'&wXOrigin'
- &lab._wDataH DC i2'&wDataH'
- &lab._wDataW DC i2'&wDataW'
- &lab._wMaxH DC i2'&wMaxH'
- &lab._wMaxW DC i2'&wMaxW'
- &lab._wScrollVer DC i2'&wScrollVer'
- &lab._wScrollHor DC i2'&wScrollHor'
- &lab._wPageVer DC i2'&wPageVer'
- &lab._wPageHor DC i2'&wPageHor'
- &lab._wInfoRefCon DC i4'&wInfoRefCon'
- &lab._wInfoHeight DC i2'&wInfoHeight'
- &lab._wFrameDefProc DC i4'&wFrameDefProc'
- &lab._wInfoDefProc DC i4'&wInfoDefProc'
- &lab._wContDefProc DC i4'&wContDefProc'
- &lab._wPosition Rect &wPosition_v1,&wPosition_h1,&wPosition_v2,&wPosition_h2
- &lab._wPlane DC i4'&wPlane'
- &lab._wStorage DC i4'&wStorage'
- MEND
- MACRO
- &lab DeskMessageRecord &reserved,&messageType,&drawType
- AIF C:&reserved,.p1
- LCLA &reserved
- .p1
- AIF C:&messageType,.p2
- LCLA &messageType
- .p2
- AIF C:&drawType,.p3
- LCLA &drawType
- .p3
- &lab DS 0
- &lab._reserved DC i4'&reserved'
- &lab._messageType DC i2'&messageType'
- &lab._drawType DC i2'&drawType'
- MEND
- MACRO
- &lab LERec &leLineHandle,&leLength,&leMaxLength,&leDestRect_v1,&leDestRect_h1,&leDestRect_v2,&leDestRect_h2,&leViewRect_v1,&leViewRect_h1,&leViewRect_v2,&leViewRect_h2,&lePort,&leLineHite,&leBaseHite,&leSelStart,&leSelEnd,&leActFlg,&leCarAct,&leCarOn,&leCarTime,&leHiliteHook,&leCaretHook,&leJust,&lePWChar
- AIF C:&leLineHandle,.p1
- LCLA &leLineHandle
- .p1
- AIF C:&leLength,.p2
- LCLA &leLength
- .p2
- AIF C:&leMaxLength,.p3
- LCLA &leMaxLength
- .p3
- AIF C:&leDestRect_v1,.p4
- LCLA &leDestRect_v1
- .p4
- AIF C:&leDestRect_h1,.p5
- LCLA &leDestRect_h1
- .p5
- AIF C:&leDestRect_v2,.p6
- LCLA &leDestRect_v2
- .p6
- AIF C:&leDestRect_h2,.p7
- LCLA &leDestRect_h2
- .p7
- AIF C:&leViewRect_v1,.p8
- LCLA &leViewRect_v1
- .p8
- AIF C:&leViewRect_h1,.p9
- LCLA &leViewRect_h1
- .p9
- AIF C:&leViewRect_v2,.p10
- LCLA &leViewRect_v2
- .p10
- AIF C:&leViewRect_h2,.p11
- LCLA &leViewRect_h2
- .p11
- AIF C:&lePort,.p12
- LCLA &lePort
- .p12
- AIF C:&leLineHite,.p13
- LCLA &leLineHite
- .p13
- AIF C:&leBaseHite,.p14
- LCLA &leBaseHite
- .p14
- AIF C:&leSelStart,.p15
- LCLA &leSelStart
- .p15
- AIF C:&leSelEnd,.p16
- LCLA &leSelEnd
- .p16
- AIF C:&leActFlg,.p17
- LCLA &leActFlg
- .p17
- AIF C:&leCarAct,.p18
- LCLA &leCarAct
- .p18
- AIF C:&leCarOn,.p19
- LCLA &leCarOn
- .p19
- AIF C:&leCarTime,.p20
- LCLA &leCarTime
- .p20
- AIF C:&leHiliteHook,.p21
- LCLA &leHiliteHook
- .p21
- AIF C:&leCaretHook,.p22
- LCLA &leCaretHook
- .p22
- AIF C:&leJust,.p23
- LCLA &leJust
- .p23
- AIF C:&lePWChar,.p24
- LCLA &lePWChar
- .p24
- &lab DS 0
- &lab._leLineHandle DC i4'&leLineHandle'
- &lab._leLength DC i2'&leLength'
- &lab._leMaxLength DC i2'&leMaxLength'
- &lab._leDestRect Rect &leDestRect_v1,&leDestRect_h1,&leDestRect_v2,&leDestRect_h2
- &lab._leViewRect Rect &leViewRect_v1,&leViewRect_h1,&leViewRect_v2,&leViewRect_h2
- &lab._lePort DC i4'&lePort'
- &lab._leLineHite DC i2'&leLineHite'
- &lab._leBaseHite DC i2'&leBaseHite'
- &lab._leSelStart DC i2'&leSelStart'
- &lab._leSelEnd DC i2'&leSelEnd'
- &lab._leActFlg DC i2'&leActFlg'
- &lab._leCarAct DC i2'&leCarAct'
- &lab._leCarOn DC i2'&leCarOn'
- &lab._leCarTime DC i4'&leCarTime'
- &lab._leHiliteHook DC i4'&leHiliteHook'
- &lab._leCaretHook DC i4'&leCaretHook'
- &lab._leJust DC i2'&leJust'
- &lab._lePWChar DC i2'&lePWChar'
- MEND
- MACRO
- &lab ItemTemplate &itemID,&itemRect_v1,&itemRect_h1,&itemRect_v2,&itemRect_h2,&itemType,&itemDescr,&itemValue,&itemFlag,&itemColor
- AIF C:&itemID,.p1
- LCLA &itemID
- .p1
- AIF C:&itemRect_v1,.p2
- LCLA &itemRect_v1
- .p2
- AIF C:&itemRect_h1,.p3
- LCLA &itemRect_h1
- .p3
- AIF C:&itemRect_v2,.p4
- LCLA &itemRect_v2
- .p4
- AIF C:&itemRect_h2,.p5
- LCLA &itemRect_h2
- .p5
- AIF C:&itemType,.p6
- LCLA &itemType
- .p6
- AIF C:&itemDescr,.p7
- LCLA &itemDescr
- .p7
- AIF C:&itemValue,.p8
- LCLA &itemValue
- .p8
- AIF C:&itemFlag,.p9
- LCLA &itemFlag
- .p9
- AIF C:&itemColor,.p10
- LCLA &itemColor
- .p10
- &lab DS 0
- &lab._itemID DC i2'&itemID'
- &lab._itemRect Rect &itemRect_v1,&itemRect_h1,&itemRect_v2,&itemRect_h2
- &lab._itemType DC i2'&itemType'
- &lab._itemDescr DC i4'&itemDescr'
- &lab._itemValue DC i2'&itemValue'
- &lab._itemFlag DC i2'&itemFlag'
- &lab._itemColor DC i4'&itemColor'
- MEND
- MACRO
- &lab AlertTemplate &atBoundsRect_v1,&atBoundsRect_h1,&atBoundsRect_v2,&atBoundsRect_h2,&atAlertID,&atStage1,&atStage2,&atStage3,&atStage4,&atItemList
- AIF C:&atBoundsRect_v1,.p1
- LCLA &atBoundsRect_v1
- .p1
- AIF C:&atBoundsRect_h1,.p2
- LCLA &atBoundsRect_h1
- .p2
- AIF C:&atBoundsRect_v2,.p3
- LCLA &atBoundsRect_v2
- .p3
- AIF C:&atBoundsRect_h2,.p4
- LCLA &atBoundsRect_h2
- .p4
- AIF C:&atAlertID,.p5
- LCLA &atAlertID
- .p5
- AIF C:&atStage1,.p6
- LCLA &atStage1
- .p6
- AIF C:&atStage2,.p7
- LCLA &atStage2
- .p7
- AIF C:&atStage3,.p8
- LCLA &atStage3
- .p8
- AIF C:&atStage4,.p9
- LCLA &atStage4
- .p9
- AIF C:&atItemList,.p10
- LCLA &atItemList
- .p10
- &lab DS 0
- &lab._atBoundsRect Rect &atBoundsRect_v1,&atBoundsRect_h1,&atBoundsRect_v2,&atBoundsRect_h2
- &lab._atAlertID DC i2'&atAlertID'
- &lab._atStage1 DC i1'&atStage1'
- &lab._atStage2 DC i1'&atStage2'
- &lab._atStage3 DC i1'&atStage3'
- &lab._atStage4 DC i1'&atStage4'
- &lab._atItemList DC i4'&atItemList'
- MEND
- MACRO
- &lab DialogTemplate &dtBoundsRect_v1,&dtBoundsRect_h1,&dtBoundsRect_v2,&dtBoundsRect_h2,&dtVisible,&dtRefCon,&dtItemList
- AIF C:&dtBoundsRect_v1,.p1
- LCLA &dtBoundsRect_v1
- .p1
- AIF C:&dtBoundsRect_h1,.p2
- LCLA &dtBoundsRect_h1
- .p2
- AIF C:&dtBoundsRect_v2,.p3
- LCLA &dtBoundsRect_v2
- .p3
- AIF C:&dtBoundsRect_h2,.p4
- LCLA &dtBoundsRect_h2
- .p4
- AIF C:&dtVisible,.p5
- LCLA &dtVisible
- .p5
- AIF C:&dtRefCon,.p6
- LCLA &dtRefCon
- .p6
- AIF C:&dtItemList,.p7
- LCLA &dtItemList
- .p7
- &lab DS 0
- &lab._dtBoundsRect Rect &dtBoundsRect_v1,&dtBoundsRect_h1,&dtBoundsRect_v2,&dtBoundsRect_h2
- &lab._dtVisible DC i4'&dtVisible'
- &lab._dtRefCon DC i4'&dtRefCon'
- &lab._dtItemList DC i4'&dtItemList'
- MEND
- MACRO
- &lab UserCtlItemPB &defProcParm,&titleParm,¶m2,¶m1
- AIF C:&defProcParm,.p1
- LCLA &defProcParm
- .p1
- AIF C:&titleParm,.p2
- LCLA &titleParm
- .p2
- AIF C:¶m2,.p3
- LCLA ¶m2
- .p3
- AIF C:¶m1,.p4
- LCLA ¶m1
- .p4
- &lab DS 0
- &lab._defProcParm DC i4'&defProcParm'
- &lab._titleParm DC i4'&titleParm'
- &lab._param2 DC i2'¶m2'
- &lab._param1 DC i2'¶m1'
- MEND
- MACRO
- &lab PrPrinterSpecRec &prPrinterType,&prCharacteristics
- AIF C:&prPrinterType,.p1
- LCLA &prPrinterType
- .p1
- AIF C:&prCharacteristics,.p2
- LCLA &prCharacteristics
- .p2
- &lab DS 0
- &lab._prPrinterType DC i2'&prPrinterType'
- &lab._prCharacteristics DC i2'&prCharacteristics'
- MEND
- MACRO
- &lab PrInfoRec &iDev,&iVRes,&iHRes,&rPage_v1,&rPage_h1,&rPage_v2,&rPage_h2
- AIF C:&iDev,.p1
- LCLA &iDev
- .p1
- AIF C:&iVRes,.p2
- LCLA &iVRes
- .p2
- AIF C:&iHRes,.p3
- LCLA &iHRes
- .p3
- AIF C:&rPage_v1,.p4
- LCLA &rPage_v1
- .p4
- AIF C:&rPage_h1,.p5
- LCLA &rPage_h1
- .p5
- AIF C:&rPage_v2,.p6
- LCLA &rPage_v2
- .p6
- AIF C:&rPage_h2,.p7
- LCLA &rPage_h2
- .p7
- &lab DS 0
- &lab._iDev DC i2'&iDev'
- &lab._iVRes DC i2'&iVRes'
- &lab._iHRes DC i2'&iHRes'
- &lab._rPage Rect &rPage_v1,&rPage_h1,&rPage_v2,&rPage_h2
- MEND
- MACRO
- &lab PrJobRec &iFstPage,&iLstPage,&iCopies,&bJDocLoop,&fFromUser,&pIdleProc,&pFileName,&iFileVol,&bFileVers,&bJobX
- AIF C:&iFstPage,.p1
- LCLA &iFstPage
- .p1
- AIF C:&iLstPage,.p2
- LCLA &iLstPage
- .p2
- AIF C:&iCopies,.p3
- LCLA &iCopies
- .p3
- AIF C:&bJDocLoop,.p4
- LCLA &bJDocLoop
- .p4
- AIF C:&fFromUser,.p5
- LCLA &fFromUser
- .p5
- AIF C:&pIdleProc,.p6
- LCLA &pIdleProc
- .p6
- AIF C:&pFileName,.p7
- LCLA &pFileName
- .p7
- AIF C:&iFileVol,.p8
- LCLA &iFileVol
- .p8
- AIF C:&bFileVers,.p9
- LCLA &bFileVers
- .p9
- AIF C:&bJobX,.p10
- LCLA &bJobX
- .p10
- &lab DS 0
- &lab._iFstPage DC i2'&iFstPage'
- &lab._iLstPage DC i2'&iLstPage'
- &lab._iCopies DC i2'&iCopies'
- &lab._bJDocLoop DC i1'&bJDocLoop'
- &lab._fFromUser DC i1'&fFromUser'
- &lab._pIdleProc DC i4'&pIdleProc'
- &lab._pFileName DC i4'&pFileName'
- &lab._iFileVol DC i2'&iFileVol'
- &lab._bFileVers DC i1'&bFileVers'
- &lab._bJobX DC i1'&bJobX'
- MEND
- MACRO
- &lab PrStyleRec &wDev,&internA,&feed,&paperType,&crWidth,&reduction,&internB
- AIF C:&wDev,.p1
- LCLA &wDev
- .p1
- AIF C:&internA,.p2
- LCLA &internA
- .p2
- AIF C:&feed,.p3
- LCLA &feed
- .p3
- AIF C:&paperType,.p4
- LCLA &paperType
- .p4
- AIF C:&crWidth,.p5
- LCLA &crWidth
- .p5
- AIF C:&reduction,.p6
- LCLA &reduction
- .p6
- AIF C:&internB,.p7
- LCLA &internB
- .p7
- &lab DS 0
- &lab._wDev DC i2'&wDev'
- &lab._internA DC i2'&internA'
- &lab._feed DC i2'&feed'
- &lab._paperType DC i2'&paperType'
- &lab._crWidth DC i2'&crWidth'
- &lab._reduction DC i2'&reduction'
- &lab._internB DC i2'&internB'
- MEND
- MACRO
- &lab PrRec &prVersion,&prInfo_iDev,&prInfo_iVRes,&prInfo_iHRes,&prInfo_rPage_v1,&prInfo_rPage_h1,&prInfo_rPage_v2,&prInfo_rPage_h2,&rPaper_v1,&rPaper_h1,&rPaper_v2,&rPaper_h2,&prStl_wDev,&prStl_internA,&prStl_feed,&prStl_paperType,&prStl_crWidth,&prStl_reduction,&prStl_internB,&prInfoPT,&prXInfo,&prJob_iFstPage,&prJob_iLstPage,&prJob_iCopies,&prJob_bJDocLoop,&prJob_fFromUser,&prJob_pIdleProc,&prJob_pFileName,&prJob_iFileVol,&prJob_bFileVers,&prJob_bJobX,&printX,&iReserved
- AIF C:&prVersion,.p1
- LCLA &prVersion
- .p1
- AIF C:&prInfo_iDev,.p2
- LCLA &prInfo_iDev
- .p2
- AIF C:&prInfo_iVRes,.p3
- LCLA &prInfo_iVRes
- .p3
- AIF C:&prInfo_iHRes,.p4
- LCLA &prInfo_iHRes
- .p4
- AIF C:&prInfo_rPage_v1,.p5
- LCLA &prInfo_rPage_v1
- .p5
- AIF C:&prInfo_rPage_h1,.p6
- LCLA &prInfo_rPage_h1
- .p6
- AIF C:&prInfo_rPage_v2,.p7
- LCLA &prInfo_rPage_v2
- .p7
- AIF C:&prInfo_rPage_h2,.p8
- LCLA &prInfo_rPage_h2
- .p8
- AIF C:&rPaper_v1,.p9
- LCLA &rPaper_v1
- .p9
- AIF C:&rPaper_h1,.p10
- LCLA &rPaper_h1
- .p10
- AIF C:&rPaper_v2,.p11
- LCLA &rPaper_v2
- .p11
- AIF C:&rPaper_h2,.p12
- LCLA &rPaper_h2
- .p12
- AIF C:&prStl_wDev,.p13
- LCLA &prStl_wDev
- .p13
- AIF C:&prStl_internA,.p14
- LCLA &prStl_internA
- .p14
- AIF C:&prStl_feed,.p15
- LCLA &prStl_feed
- .p15
- AIF C:&prStl_paperType,.p16
- LCLA &prStl_paperType
- .p16
- AIF C:&prStl_crWidth,.p17
- LCLA &prStl_crWidth
- .p17
- AIF C:&prStl_reduction,.p18
- LCLA &prStl_reduction
- .p18
- AIF C:&prStl_internB,.p19
- LCLA &prStl_internB
- .p19
- AIF C:&prInfoPT,.p20
- LCLA &prInfoPT
- .p20
- AIF C:&prXInfo,.p21
- LCLA &prXInfo
- .p21
- AIF C:&prJob_iFstPage,.p22
- LCLA &prJob_iFstPage
- .p22
- AIF C:&prJob_iLstPage,.p23
- LCLA &prJob_iLstPage
- .p23
- AIF C:&prJob_iCopies,.p24
- LCLA &prJob_iCopies
- .p24
- AIF C:&prJob_bJDocLoop,.p25
- LCLA &prJob_bJDocLoop
- .p25
- AIF C:&prJob_fFromUser,.p26
- LCLA &prJob_fFromUser
- .p26
- AIF C:&prJob_pIdleProc,.p27
- LCLA &prJob_pIdleProc
- .p27
- AIF C:&prJob_pFileName,.p28
- LCLA &prJob_pFileName
- .p28
- AIF C:&prJob_iFileVol,.p29
- LCLA &prJob_iFileVol
- .p29
- AIF C:&prJob_bFileVers,.p30
- LCLA &prJob_bFileVers
- .p30
- AIF C:&prJob_bJobX,.p31
- LCLA &prJob_bJobX
- .p31
- AIF C:&printX,.p32
- LCLA &printX
- .p32
- AIF C:&iReserved,.p33
- LCLA &iReserved
- .p33
- &lab DS 0
- &lab._prVersion DC i2'&prVersion'
- &lab._prInfo PrInfoRec &prInfo_iDev,&prInfo_iVRes,&prInfo_iHRes,&prInfo_rPage_v1,&prInfo_rPage_h1,&prInfo_rPage_v2,&prInfo_rPage_h2
- &lab._rPaper Rect &rPaper_v1,&rPaper_h1,&rPaper_v2,&rPaper_h2
- &lab._prStl PrStyleRec &prStl_wDev,&prStl_internA,&prStl_feed,&prStl_paperType,&prStl_crWidth,&prStl_reduction,&prStl_internB
- &lab._prInfoPT DC i1'&prInfoPT'
- &lab._prXInfo DC i1'&prXInfo'
- &lab._prJob PrJobRec &prJob_iFstPage,&prJob_iLstPage,&prJob_iCopies,&prJob_bJDocLoop,&prJob_fFromUser,&prJob_pIdleProc,&prJob_pFileName,&prJob_iFileVol,&prJob_bFileVers,&prJob_bJobX
- &lab._printX DC i1'&printX'
- &lab._iReserved DC i2'&iReserved'
- MEND
- MACRO
- &lab PrStatusRec &iTotPages,&iCurPage,&iTotCopies,&iCurCopy,&iTotBands,&iCurBand,&fPgDirty,&fImaging,&hPrint,&pPrPort,&hPic
- AIF C:&iTotPages,.p1
- LCLA &iTotPages
- .p1
- AIF C:&iCurPage,.p2
- LCLA &iCurPage
- .p2
- AIF C:&iTotCopies,.p3
- LCLA &iTotCopies
- .p3
- AIF C:&iCurCopy,.p4
- LCLA &iCurCopy
- .p4
- AIF C:&iTotBands,.p5
- LCLA &iTotBands
- .p5
- AIF C:&iCurBand,.p6
- LCLA &iCurBand
- .p6
- AIF C:&fPgDirty,.p7
- LCLA &fPgDirty
- .p7
- AIF C:&fImaging,.p8
- LCLA &fImaging
- .p8
- AIF C:&hPrint,.p9
- LCLA &hPrint
- .p9
- AIF C:&pPrPort,.p10
- LCLA &pPrPort
- .p10
- AIF C:&hPic,.p11
- LCLA &hPic
- .p11
- &lab DS 0
- &lab._iTotPages DC i2'&iTotPages'
- &lab._iCurPage DC i2'&iCurPage'
- &lab._iTotCopies DC i2'&iTotCopies'
- &lab._iCurCopy DC i2'&iCurCopy'
- &lab._iTotBands DC i2'&iTotBands'
- &lab._iCurBand DC i2'&iCurBand'
- &lab._fPgDirty DC i4'&fPgDirty'
- &lab._fImaging DC i2'&fImaging'
- &lab._hPrint DC i4'&hPrint'
- &lab._pPrPort DC i4'&pPrPort'
- &lab._hPic DC i4'&hPic'
- MEND
- MACRO
- &lab ReadConfigRec &rcADBAddr,&rcLayoutOrLang,&rcRepeatDelay
- AIF C:&rcADBAddr,.p1
- LCLA &rcADBAddr
- .p1
- AIF C:&rcLayoutOrLang,.p2
- LCLA &rcLayoutOrLang
- .p2
- AIF C:&rcRepeatDelay,.p3
- LCLA &rcRepeatDelay
- .p3
- &lab DS 0
- &lab._rcADBAddr DC i1'&rcADBAddr'
- &lab._rcLayoutOrLang DC i1'&rcLayoutOrLang'
- &lab._rcRepeatDelay DC i1'&rcRepeatDelay'
- MEND
- MACRO
- &lab SetConfigRec &scADBAddr,&scLayoutOrLang,&scRepeatDelay
- AIF C:&scADBAddr,.p1
- LCLA &scADBAddr
- .p1
- AIF C:&scLayoutOrLang,.p2
- LCLA &scLayoutOrLang
- .p2
- AIF C:&scRepeatDelay,.p3
- LCLA &scRepeatDelay
- .p3
- &lab DS 0
- &lab._scADBAddr DC i1'&scADBAddr'
- &lab._scLayoutOrLang DC i1'&scLayoutOrLang'
- &lab._scRepeatDelay DC i1'&scRepeatDelay'
- MEND
- MACRO
- &lab SynchRec &synchMode,&synchKybdMouseAddr,&synchLayoutOrLang,&synchRepeatDelay
- AIF C:&synchMode,.p1
- LCLA &synchMode
- .p1
- AIF C:&synchKybdMouseAddr,.p2
- LCLA &synchKybdMouseAddr
- .p2
- AIF C:&synchLayoutOrLang,.p3
- LCLA &synchLayoutOrLang
- .p3
- AIF C:&synchRepeatDelay,.p4
- LCLA &synchRepeatDelay
- .p4
- &lab DS 0
- &lab._synchMode DC i1'&synchMode'
- &lab._synchKybdMouseAddr DC i1'&synchKybdMouseAddr'
- &lab._synchLayoutOrLang DC i1'&synchLayoutOrLang'
- &lab._synchRepeatDelay DC i1'&synchRepeatDelay'
- MEND
- MACRO
- &lab ScaleRec &xDivide,&yDivide,&xOffset,&yOffset,&xMultiply,&yMultiply
- AIF C:&xDivide,.p1
- LCLA &xDivide
- .p1
- AIF C:&yDivide,.p2
- LCLA &yDivide
- .p2
- AIF C:&xOffset,.p3
- LCLA &xOffset
- .p3
- AIF C:&yOffset,.p4
- LCLA &yOffset
- .p4
- AIF C:&xMultiply,.p5
- LCLA &xMultiply
- .p5
- AIF C:&yMultiply,.p6
- LCLA &yMultiply
- .p6
- &lab DS 0
- &lab._xDivide DC i2'&xDivide'
- &lab._yDivide DC i2'&yDivide'
- &lab._xOffset DC i2'&xOffset'
- &lab._yOffset DC i2'&yOffset'
- &lab._xMultiply DC i2'&xMultiply'
- &lab._yMultiply DC i2'&yMultiply'
- MEND
- MACRO
- &lab FontStatRec &resultID_famNum,&resultID_fontStyle,&resultID_fontSize,&resultStats
- AIF C:&resultID_famNum,.p1
- LCLA &resultID_famNum
- .p1
- AIF C:&resultID_fontStyle,.p2
- LCLA &resultID_fontStyle
- .p2
- AIF C:&resultID_fontSize,.p3
- LCLA &resultID_fontSize
- .p3
- AIF C:&resultStats,.p4
- LCLA &resultStats
- .p4
- &lab DS 0
- &lab._resultID FontID &resultID_famNum,&resultID_fontStyle,&resultID_fontSize
- &lab._resultStats DC i2'&resultStats'
- MEND
- MACRO
- &lab GSString255 &length,&text
- AIF C:&length,.p1
- LCLA &length
- .p1
- AIF C:&text,.p2
- LCLA &text
- .p2
- &lab DS 0
- &lab._length DC i2'&length'
- &lab._text DC i1'&text'
- MEND
- MACRO
- &lab GSString32 &length,&text
- AIF C:&length,.p1
- LCLA &length
- .p1
- AIF C:&text,.p2
- LCLA &text
- .p2
- &lab DS 0
- &lab._length DC i2'&length'
- &lab._text DC i1'&text'
- MEND
- MACRO
- &lab ResultBuf255 &bufSize,&bufString_length,&bufString_text
- AIF C:&bufSize,.p1
- LCLA &bufSize
- .p1
- AIF C:&bufString_length,.p2
- LCLA &bufString_length
- .p2
- AIF C:&bufString_text,.p3
- LCLA &bufString_text
- .p3
- &lab DS 0
- &lab._bufSize DC i2'&bufSize'
- &lab._bufString GSString255 &bufString_length,&bufString_text
- MEND
- MACRO
- &lab ResultBuf32 &bufSize,&bufString_length,&bufString_text
- AIF C:&bufSize,.p1
- LCLA &bufSize
- .p1
- AIF C:&bufString_length,.p2
- LCLA &bufString_length
- .p2
- AIF C:&bufString_text,.p3
- LCLA &bufString_text
- .p3
- &lab DS 0
- &lab._bufSize DC i2'&bufSize'
- &lab._bufString GSString32 &bufString_length,&bufString_text
- MEND
- MACRO
- &lab ChangePathRecGS &pCount,&pathname,&newPathname
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&pathname,.p2
- LCLA &pathname
- .p2
- AIF C:&newPathname,.p3
- LCLA &newPathname
- .p3
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._pathname DC i4'&pathname'
- &lab._newPathname DC i4'&newPathname'
- MEND
- MACRO
- &lab CreateRecGS &pCount,&pathname,&access,&fileType,&auxType,&storageType,&eof,&resourceEOF
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&pathname,.p2
- LCLA &pathname
- .p2
- AIF C:&access,.p3
- LCLA &access
- .p3
- AIF C:&fileType,.p4
- LCLA &fileType
- .p4
- AIF C:&auxType,.p5
- LCLA &auxType
- .p5
- AIF C:&storageType,.p6
- LCLA &storageType
- .p6
- AIF C:&eof,.p7
- LCLA &eof
- .p7
- AIF C:&resourceEOF,.p8
- LCLA &resourceEOF
- .p8
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._pathname DC i4'&pathname'
- &lab._access DC i2'&access'
- &lab._fileType DC i2'&fileType'
- &lab._auxType DC i4'&auxType'
- &lab._storageType DC i2'&storageType'
- &lab._eof DC i4'&eof'
- &lab._resourceEOF DC i4'&resourceEOF'
- MEND
- MACRO
- &lab DAccessRecGS &pCount,&devNum,&code,&list,&requestCount,&transferCount
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&devNum,.p2
- LCLA &devNum
- .p2
- AIF C:&code,.p3
- LCLA &code
- .p3
- AIF C:&list,.p4
- LCLA &list
- .p4
- AIF C:&requestCount,.p5
- LCLA &requestCount
- .p5
- AIF C:&transferCount,.p6
- LCLA &transferCount
- .p6
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._devNum DC i2'&devNum'
- &lab._code DC i2'&code'
- &lab._list DC i4'&list'
- &lab._requestCount DC i4'&requestCount'
- &lab._transferCount DC i4'&transferCount'
- MEND
- MACRO
- &lab DevNumRecGS &pCount,&devName,&devNum
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&devName,.p2
- LCLA &devName
- .p2
- AIF C:&devNum,.p3
- LCLA &devNum
- .p3
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._devName DC i4'&devName'
- &lab._devNum DC i2'&devNum'
- MEND
- MACRO
- &lab DInfoRecGS &pCount,&devNum,&devName,&characteristics,&totalBlocks,&slotNum,&unitNum,&version,&deviceID,&headLink,&forwardLink,&extendedDIBPtr
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&devNum,.p2
- LCLA &devNum
- .p2
- AIF C:&devName,.p3
- LCLA &devName
- .p3
- AIF C:&characteristics,.p4
- LCLA &characteristics
- .p4
- AIF C:&totalBlocks,.p5
- LCLA &totalBlocks
- .p5
- AIF C:&slotNum,.p6
- LCLA &slotNum
- .p6
- AIF C:&unitNum,.p7
- LCLA &unitNum
- .p7
- AIF C:&version,.p8
- LCLA &version
- .p8
- AIF C:&deviceID,.p9
- LCLA &deviceID
- .p9
- AIF C:&headLink,.p10
- LCLA &headLink
- .p10
- AIF C:&forwardLink,.p11
- LCLA &forwardLink
- .p11
- AIF C:&extendedDIBPtr,.p12
- LCLA &extendedDIBPtr
- .p12
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._devNum DC i2'&devNum'
- &lab._devName DC i4'&devName'
- &lab._characteristics DC i2'&characteristics'
- &lab._totalBlocks DC i4'&totalBlocks'
- &lab._slotNum DC i2'&slotNum'
- &lab._unitNum DC i2'&unitNum'
- &lab._version DC i2'&version'
- &lab._deviceID DC i2'&deviceID'
- &lab._headLink DC i2'&headLink'
- &lab._forwardLink DC i2'&forwardLink'
- &lab._extendedDIBPtr DC i4'&extendedDIBPtr'
- MEND
- MACRO
- &lab DIORecGS &pCount,&devNum,&buffer,&requestCount,&startingBlock,&blockSize,&transferCount
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&devNum,.p2
- LCLA &devNum
- .p2
- AIF C:&buffer,.p3
- LCLA &buffer
- .p3
- AIF C:&requestCount,.p4
- LCLA &requestCount
- .p4
- AIF C:&startingBlock,.p5
- LCLA &startingBlock
- .p5
- AIF C:&blockSize,.p6
- LCLA &blockSize
- .p6
- AIF C:&transferCount,.p7
- LCLA &transferCount
- .p7
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._devNum DC i2'&devNum'
- &lab._buffer DC i4'&buffer'
- &lab._requestCount DC i4'&requestCount'
- &lab._startingBlock DC i4'&startingBlock'
- &lab._blockSize DC i2'&blockSize'
- &lab._transferCount DC i4'&transferCount'
- MEND
- MACRO
- &lab DirEntryRecGS &pCount,&refNum,&flags,&base,&displacement,&name,&entryNum,&fileType,&eof,&blockCount,&createDateTime_second,&createDateTime_minute,&createDateTime_hour,&createDateTime_year,&createDateTime_day,&createDateTime_month,&createDateTime_extra,&createDateTime_weekDay,&modDateTime_second,&modDateTime_minute,&modDateTime_hour,&modDateTime_year,&modDateTime_day,&modDateTime_month,&modDateTime_extra,&modDateTime_weekDay,&access,&auxType,&fileSysID,&optionList,&resourceEOF,&resourceBlocks
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&refNum,.p2
- LCLA &refNum
- .p2
- AIF C:&flags,.p3
- LCLA &flags
- .p3
- AIF C:&base,.p4
- LCLA &base
- .p4
- AIF C:&displacement,.p5
- LCLA &displacement
- .p5
- AIF C:&name,.p6
- LCLA &name
- .p6
- AIF C:&entryNum,.p7
- LCLA &entryNum
- .p7
- AIF C:&fileType,.p8
- LCLA &fileType
- .p8
- AIF C:&eof,.p9
- LCLA &eof
- .p9
- AIF C:&blockCount,.p10
- LCLA &blockCount
- .p10
- AIF C:&createDateTime_second,.p11
- LCLA &createDateTime_second
- .p11
- AIF C:&createDateTime_minute,.p12
- LCLA &createDateTime_minute
- .p12
- AIF C:&createDateTime_hour,.p13
- LCLA &createDateTime_hour
- .p13
- AIF C:&createDateTime_year,.p14
- LCLA &createDateTime_year
- .p14
- AIF C:&createDateTime_day,.p15
- LCLA &createDateTime_day
- .p15
- AIF C:&createDateTime_month,.p16
- LCLA &createDateTime_month
- .p16
- AIF C:&createDateTime_extra,.p17
- LCLA &createDateTime_extra
- .p17
- AIF C:&createDateTime_weekDay,.p18
- LCLA &createDateTime_weekDay
- .p18
- AIF C:&modDateTime_second,.p19
- LCLA &modDateTime_second
- .p19
- AIF C:&modDateTime_minute,.p20
- LCLA &modDateTime_minute
- .p20
- AIF C:&modDateTime_hour,.p21
- LCLA &modDateTime_hour
- .p21
- AIF C:&modDateTime_year,.p22
- LCLA &modDateTime_year
- .p22
- AIF C:&modDateTime_day,.p23
- LCLA &modDateTime_day
- .p23
- AIF C:&modDateTime_month,.p24
- LCLA &modDateTime_month
- .p24
- AIF C:&modDateTime_extra,.p25
- LCLA &modDateTime_extra
- .p25
- AIF C:&modDateTime_weekDay,.p26
- LCLA &modDateTime_weekDay
- .p26
- AIF C:&access,.p27
- LCLA &access
- .p27
- AIF C:&auxType,.p28
- LCLA &auxType
- .p28
- AIF C:&fileSysID,.p29
- LCLA &fileSysID
- .p29
- AIF C:&optionList,.p30
- LCLA &optionList
- .p30
- AIF C:&resourceEOF,.p31
- LCLA &resourceEOF
- .p31
- AIF C:&resourceBlocks,.p32
- LCLA &resourceBlocks
- .p32
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._refNum DC i2'&refNum'
- &lab._flags DC i2'&flags'
- &lab._base DC i2'&base'
- &lab._displacement DC i2'&displacement'
- &lab._name DC i4'&name'
- &lab._entryNum DC i2'&entryNum'
- &lab._fileType DC i2'&fileType'
- &lab._eof DC i4'&eof'
- &lab._blockCount DC i4'&blockCount'
- &lab._createDateTime TimeRec &createDateTime_second,&createDateTime_minute,&createDateTime_hour,&createDateTime_year,&createDateTime_day,&createDateTime_month,&createDateTime_extra,&createDateTime_weekDay
- &lab._modDateTime TimeRec &modDateTime_second,&modDateTime_minute,&modDateTime_hour,&modDateTime_year,&modDateTime_day,&modDateTime_month,&modDateTime_extra,&modDateTime_weekDay
- &lab._access DC i2'&access'
- &lab._auxType DC i4'&auxType'
- &lab._fileSysID DC i2'&fileSysID'
- &lab._optionList DC i4'&optionList'
- &lab._resourceEOF DC i4'&resourceEOF'
- &lab._resourceBlocks DC i4'&resourceBlocks'
- MEND
- MACRO
- &lab DRenameRecGS &pCount,&devNum,&strPtr
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&devNum,.p2
- LCLA &devNum
- .p2
- AIF C:&strPtr,.p3
- LCLA &strPtr
- .p3
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._devNum DC i2'&devNum'
- &lab._strPtr DC i4'&strPtr'
- MEND
- MACRO
- &lab ExpandPathRecGS &pCount,&inputPath,&outputPath,&flags
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&inputPath,.p2
- LCLA &inputPath
- .p2
- AIF C:&outputPath,.p3
- LCLA &outputPath
- .p3
- AIF C:&flags,.p4
- LCLA &flags
- .p4
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._inputPath DC i4'&inputPath'
- &lab._outputPath DC i4'&outputPath'
- &lab._flags DC i2'&flags'
- MEND
- MACRO
- &lab FileInfoRecGS &pCount,&pathname,&access,&fileType,&auxType,&storageType,&createDateTime_second,&createDateTime_minute,&createDateTime_hour,&createDateTime_year,&createDateTime_day,&createDateTime_month,&createDateTime_extra,&createDateTime_weekDay,&modDateTime_second,&modDateTime_minute,&modDateTime_hour,&modDateTime_year,&modDateTime_day,&modDateTime_month,&modDateTime_extra,&modDateTime_weekDay,&optionList,&eof,&blocksUsed,&resourceEOF,&resourceBlocks
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&pathname,.p2
- LCLA &pathname
- .p2
- AIF C:&access,.p3
- LCLA &access
- .p3
- AIF C:&fileType,.p4
- LCLA &fileType
- .p4
- AIF C:&auxType,.p5
- LCLA &auxType
- .p5
- AIF C:&storageType,.p6
- LCLA &storageType
- .p6
- AIF C:&createDateTime_second,.p7
- LCLA &createDateTime_second
- .p7
- AIF C:&createDateTime_minute,.p8
- LCLA &createDateTime_minute
- .p8
- AIF C:&createDateTime_hour,.p9
- LCLA &createDateTime_hour
- .p9
- AIF C:&createDateTime_year,.p10
- LCLA &createDateTime_year
- .p10
- AIF C:&createDateTime_day,.p11
- LCLA &createDateTime_day
- .p11
- AIF C:&createDateTime_month,.p12
- LCLA &createDateTime_month
- .p12
- AIF C:&createDateTime_extra,.p13
- LCLA &createDateTime_extra
- .p13
- AIF C:&createDateTime_weekDay,.p14
- LCLA &createDateTime_weekDay
- .p14
- AIF C:&modDateTime_second,.p15
- LCLA &modDateTime_second
- .p15
- AIF C:&modDateTime_minute,.p16
- LCLA &modDateTime_minute
- .p16
- AIF C:&modDateTime_hour,.p17
- LCLA &modDateTime_hour
- .p17
- AIF C:&modDateTime_year,.p18
- LCLA &modDateTime_year
- .p18
- AIF C:&modDateTime_day,.p19
- LCLA &modDateTime_day
- .p19
- AIF C:&modDateTime_month,.p20
- LCLA &modDateTime_month
- .p20
- AIF C:&modDateTime_extra,.p21
- LCLA &modDateTime_extra
- .p21
- AIF C:&modDateTime_weekDay,.p22
- LCLA &modDateTime_weekDay
- .p22
- AIF C:&optionList,.p23
- LCLA &optionList
- .p23
- AIF C:&eof,.p24
- LCLA &eof
- .p24
- AIF C:&blocksUsed,.p25
- LCLA &blocksUsed
- .p25
- AIF C:&resourceEOF,.p26
- LCLA &resourceEOF
- .p26
- AIF C:&resourceBlocks,.p27
- LCLA &resourceBlocks
- .p27
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._pathname DC i4'&pathname'
- &lab._access DC i2'&access'
- &lab._fileType DC i2'&fileType'
- &lab._auxType DC i4'&auxType'
- &lab._storageType DC i2'&storageType'
- &lab._createDateTime TimeRec &createDateTime_second,&createDateTime_minute,&createDateTime_hour,&createDateTime_year,&createDateTime_day,&createDateTime_month,&createDateTime_extra,&createDateTime_weekDay
- &lab._modDateTime TimeRec &modDateTime_second,&modDateTime_minute,&modDateTime_hour,&modDateTime_year,&modDateTime_day,&modDateTime_month,&modDateTime_extra,&modDateTime_weekDay
- &lab._optionList DC i4'&optionList'
- &lab._eof DC i4'&eof'
- &lab._blocksUsed DC i4'&blocksUsed'
- &lab._resourceEOF DC i4'&resourceEOF'
- &lab._resourceBlocks DC i4'&resourceBlocks'
- MEND
- MACRO
- &lab FormatRecGS &pCount,&devName,&volName,&fileSysID,&reqFileSysID
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&devName,.p2
- LCLA &devName
- .p2
- AIF C:&volName,.p3
- LCLA &volName
- .p3
- AIF C:&fileSysID,.p4
- LCLA &fileSysID
- .p4
- AIF C:&reqFileSysID,.p5
- LCLA &reqFileSysID
- .p5
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._devName DC i4'&devName'
- &lab._volName DC i4'&volName'
- &lab._fileSysID DC i2'&fileSysID'
- &lab._reqFileSysID DC i2'&reqFileSysID'
- MEND
- MACRO
- &lab FSTInfoRecGS &pCount,&fstNum,&fileSysID,&fstName,&version,&attributes,&blockSize,&maxVolSize,&maxFileSize
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&fstNum,.p2
- LCLA &fstNum
- .p2
- AIF C:&fileSysId,.p3
- LCLA &fileSysId
- .p3
- AIF C:&fstName,.p4
- LCLA &fstName
- .p4
- AIF C:&version,.p5
- LCLA &version
- .p5
- AIF C:&attributes,.p6
- LCLA &attributes
- .p6
- AIF C:&blockSize,.p7
- LCLA &blockSize
- .p7
- AIF C:&maxVolSize,.p8
- LCLA &maxVolSize
- .p8
- AIF C:&maxFileSize,.p9
- LCLA &maxFileSize
- .p9
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._fstNum DC i2'&fstNum'
- &lab._fileSysId DC i2'&fileSysId'
- &lab._fstName DC i4'&fstName'
- &lab._version DC i2'&version'
- &lab._attributes DC i2'&attributes'
- &lab._blockSize DC i2'&blockSize'
- &lab._maxVolSize DC i4'&maxVolSize'
- &lab._maxFileSize DC i4'&maxFileSize'
- MEND
- MACRO
- &lab InterruptRecGS &pCount,&intNum,&vrn,&intCode
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&intNum,.p2
- LCLA &intNum
- .p2
- AIF C:&vrn,.p3
- LCLA &vrn
- .p3
- AIF C:&intCode,.p4
- LCLA &intCode
- .p4
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._intNum DC i2'&intNum'
- &lab._vrn DC i2'&vrn'
- &lab._intCode DC i4'&intCode'
- MEND
- MACRO
- &lab IORecGS &pCount,&refNum,&dataBuffer,&requestCount,&transferCount,&cachePriority
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&refNum,.p2
- LCLA &refNum
- .p2
- AIF C:&dataBuffer,.p3
- LCLA &dataBuffer
- .p3
- AIF C:&requestCount,.p4
- LCLA &requestCount
- .p4
- AIF C:&transferCount,.p5
- LCLA &transferCount
- .p5
- AIF C:&cachePriority,.p6
- LCLA &cachePriority
- .p6
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._refNum DC i2'&refNum'
- &lab._dataBuffer DC i4'&dataBuffer'
- &lab._requestCount DC i4'&requestCount'
- &lab._transferCount DC i4'&transferCount'
- &lab._cachePriority DC i2'&cachePriority'
- MEND
- MACRO
- &lab LevelRecGS &pCount,&level
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&level,.p2
- LCLA &level
- .p2
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._level DC i2'&level'
- MEND
- MACRO
- &lab NameRecGS &pCount,&pathname
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&pathname,.p2
- LCLA &pathname
- .p2
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._pathname DC i4'&pathname'
- MEND
- MACRO
- &lab NotifyProcRecGS &pCount,&procPointer
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&procPointer,.p2
- LCLA &procPointer
- .p2
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._procPointer DC i4'&procPointer'
- MEND
- MACRO
- &lab GetNameRecGS &pCount,&dataBuffer
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&dataBuffer,.p2
- LCLA &dataBuffer
- .p2
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._dataBuffer DC i4'&dataBuffer'
- MEND
- MACRO
- &lab NewlineRecGS &pCount,&refNum,&enableMask,&numChars,&newlineTable
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&refNum,.p2
- LCLA &refNum
- .p2
- AIF C:&enableMask,.p3
- LCLA &enableMask
- .p3
- AIF C:&numChars,.p4
- LCLA &numChars
- .p4
- AIF C:&newlineTable,.p5
- LCLA &newlineTable
- .p5
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._refNum DC i2'&refNum'
- &lab._enableMask DC i2'&enableMask'
- &lab._numChars DC i2'&numChars'
- &lab._newlineTable DC i4'&newlineTable'
- MEND
- MACRO
- &lab OpenRecGS &pCount,&refNum,&pathname,&requestAccess,&resourceNumber,&access,&fileType,&auxType,&storageType,&createDateTime_second,&createDateTime_minute,&createDateTime_hour,&createDateTime_year,&createDateTime_day,&createDateTime_month,&createDateTime_extra,&createDateTime_weekDay,&modDateTime_second,&modDateTime_minute,&modDateTime_hour,&modDateTime_year,&modDateTime_day,&modDateTime_month,&modDateTime_extra,&modDateTime_weekDay,&optionList,&eof,&blocksUsed,&resourceEOF,&resourceBlocks
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&refNum,.p2
- LCLA &refNum
- .p2
- AIF C:&pathname,.p3
- LCLA &pathname
- .p3
- AIF C:&requestAccess,.p4
- LCLA &requestAccess
- .p4
- AIF C:&resourceNumber,.p5
- LCLA &resourceNumber
- .p5
- AIF C:&access,.p6
- LCLA &access
- .p6
- AIF C:&fileType,.p7
- LCLA &fileType
- .p7
- AIF C:&auxType,.p8
- LCLA &auxType
- .p8
- AIF C:&storageType,.p9
- LCLA &storageType
- .p9
- AIF C:&createDateTime_second,.p10
- LCLA &createDateTime_second
- .p10
- AIF C:&createDateTime_minute,.p11
- LCLA &createDateTime_minute
- .p11
- AIF C:&createDateTime_hour,.p12
- LCLA &createDateTime_hour
- .p12
- AIF C:&createDateTime_year,.p13
- LCLA &createDateTime_year
- .p13
- AIF C:&createDateTime_day,.p14
- LCLA &createDateTime_day
- .p14
- AIF C:&createDateTime_month,.p15
- LCLA &createDateTime_month
- .p15
- AIF C:&createDateTime_extra,.p16
- LCLA &createDateTime_extra
- .p16
- AIF C:&createDateTime_weekDay,.p17
- LCLA &createDateTime_weekDay
- .p17
- AIF C:&modDateTime_second,.p18
- LCLA &modDateTime_second
- .p18
- AIF C:&modDateTime_minute,.p19
- LCLA &modDateTime_minute
- .p19
- AIF C:&modDateTime_hour,.p20
- LCLA &modDateTime_hour
- .p20
- AIF C:&modDateTime_year,.p21
- LCLA &modDateTime_year
- .p21
- AIF C:&modDateTime_day,.p22
- LCLA &modDateTime_day
- .p22
- AIF C:&modDateTime_month,.p23
- LCLA &modDateTime_month
- .p23
- AIF C:&modDateTime_extra,.p24
- LCLA &modDateTime_extra
- .p24
- AIF C:&modDateTime_weekDay,.p25
- LCLA &modDateTime_weekDay
- .p25
- AIF C:&optionList,.p26
- LCLA &optionList
- .p26
- AIF C:&eof,.p27
- LCLA &eof
- .p27
- AIF C:&blocksUsed,.p28
- LCLA &blocksUsed
- .p28
- AIF C:&resourceEOF,.p29
- LCLA &resourceEOF
- .p29
- AIF C:&resourceBlocks,.p30
- LCLA &resourceBlocks
- .p30
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._refNum DC i2'&refNum'
- &lab._pathname DC i4'&pathname'
- &lab._requestAccess DC i2'&requestAccess'
- &lab._resourceNumber DC i2'&resourceNumber'
- &lab._access DC i2'&access'
- &lab._fileType DC i2'&fileType'
- &lab._auxType DC i4'&auxType'
- &lab._storageType DC i2'&storageType'
- &lab._createDateTime TimeRec &createDateTime_second,&createDateTime_minute,&createDateTime_hour,&createDateTime_year,&createDateTime_day,&createDateTime_month,&createDateTime_extra,&createDateTime_weekDay
- &lab._modDateTime TimeRec &modDateTime_second,&modDateTime_minute,&modDateTime_hour,&modDateTime_year,&modDateTime_day,&modDateTime_month,&modDateTime_extra,&modDateTime_weekDay
- &lab._optionList DC i4'&optionList'
- &lab._eof DC i4'&eof'
- &lab._blocksUsed DC i4'&blocksUsed'
- &lab._resourceEOF DC i4'&resourceEOF'
- &lab._resourceBlocks DC i4'&resourceBlocks'
- MEND
- MACRO
- &lab OSShutDownRecGS &pCount,&shutdownFlag
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&shutdownFlag,.p2
- LCLA &shutdownFlag
- .p2
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._shutdownFlag DC i2'&shutdownFlag'
- MEND
- MACRO
- &lab PositionRecGS &pCount,&refNum,&position
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&refNum,.p2
- LCLA &refNum
- .p2
- AIF C:&position,.p3
- LCLA &position
- .p3
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._refNum DC i2'&refNum'
- &lab._position DC i4'&position'
- MEND
- MACRO
- &lab EOFRecGS &pCount,&refNum,&eof
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&refNum,.p2
- LCLA &refNum
- .p2
- AIF C:&eof,.p3
- LCLA &eof
- .p3
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._refNum DC i2'&refNum'
- &lab._eof DC i4'&eof'
- MEND
-
- MACRO
- &lab QuitRecGS &pCount,&pathname,&flags
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&pathname,.p2
- LCLA &pathname
- .p2
- AIF C:&flags,.p3
- LCLA &flags
- .p3
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._pathname DC i4'&pathname'
- &lab._flags DC i2'&flags'
- MEND
- MACRO
- &lab RefNumRecGS &pCount,&refNum
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&refNum,.p2
- LCLA &refNum
- .p2
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._refNum DC i2'&refNum'
- MEND
- MACRO
- &lab GetRefNumRecGS &pCount,&pathname,&refNum,&access,&resNum,&caseSense,&displacement
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&pathname,.p2
- LCLA &pathname
- .p2
- AIF C:&refNum,.p3
- LCLA &refNum
- .p3
- AIF C:&access,.p4
- LCLA &access
- .p4
- AIF C:&resNum,.p5
- LCLA &resNum
- .p5
- AIF C:&caseSense,.p6
- LCLA &caseSense
- .p6
- AIF C:&displacement,.p7
- LCLA &displacement
- .p7
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._pathname DC i4'&pathname'
- &lab._refNum DC i2'&refNum'
- &lab._access DC i2'&access'
- &lab._resNum DC i2'&resNum'
- &lab._caseSense DC i4'&caseSense'
- &lab._displacement DC i2'&displacement'
- MEND
- MACRO
- &lab StdRefNumRecGS &pCount,&prefixNum,&refNum
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&prefixNum,.p2
- LCLA &prefixNum
- .p2
- AIF C:&refNum,.p3
- LCLA &refNum
- .p3
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._prefixNum DC i2'&prefixNum'
- &lab._refNum DC i2'&refNum'
- MEND
- MACRO
- &lab SessionStatusRecGS &pCount,&status
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&status,.p2
- LCLA &status
- .p2
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._status DC i2'&status'
- MEND
- MACRO
- &lab SetPositionRecGS &pCount,&refNum,&base,&displacement
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&refNum,.p2
- LCLA &refNum
- .p2
- AIF C:&base,.p3
- LCLA &base
- .p3
- AIF C:&displacement,.p4
- LCLA &displacement
- .p4
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._refNum DC i2'&refNum'
- &lab._base DC i2'&base'
- &lab._displacement DC i4'&displacement'
- MEND
- MACRO
- &lab SysPrefsRecGS &pCount,&preferences
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&preferences,.p2
- LCLA &preferences
- .p2
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._preferences DC i2'&preferences'
- MEND
- MACRO
- &lab VersionRecGS &pCount,&version
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&version,.p2
- LCLA &version
- .p2
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._version DC i2'&version'
- MEND
- MACRO
- &lab VolumeRecGS &pCount,&devName,&volName,&totalBlocks,&freeBlocks,&fileSysID,&blockSize
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&devName,.p2
- LCLA &devName
- .p2
- AIF C:&volName,.p3
- LCLA &volName
- .p3
- AIF C:&totalBlocks,.p4
- LCLA &totalBlocks
- .p4
- AIF C:&freeBlocks,.p5
- LCLA &freeBlocks
- .p5
- AIF C:&fileSysID,.p6
- LCLA &fileSysID
- .p6
- AIF C:&blockSize,.p7
- LCLA &blockSize
- .p7
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._devName DC i4'&devName'
- &lab._volName DC i4'&volName'
- &lab._totalBlocks DC i4'&totalBlocks'
- &lab._freeBlocks DC i4'&freeBlocks'
- &lab._fileSysID DC i2'&fileSysID'
- &lab._blockSize DC i2'&blockSize'
- MEND
- MACRO
- &lab RefInfoRecGS &pCount,&refNum,&access,&pathname
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&refNum,.p2
- LCLA &refNum
- .p2
- AIF C:&access,.p3
- LCLA &access
- .p3
- AIF C:&pathname,.p4
- LCLA &pathname
- .p4
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._refNum DC i2'&refNum'
- &lab._access DC i2'&access'
- &lab._pathname DC i4'&pathname'
- MEND
- MACRO
- &lab IntDivRec "ient,&remainder
- AIF C:"ient,.p1
- LCLA "ient
- .p1
- AIF C:&remainder,.p2
- LCLA &remainder
- .p2
- &lab DS 0
- &lab._quotient DC i2'"ient'
- &lab._remainder DC i2'&remainder'
- MEND
- MACRO
- &lab LongDivRec "ient,&remainder
- AIF C:"ient,.p1
- LCLA "ient
- .p1
- AIF C:&remainder,.p2
- LCLA &remainder
- .p2
- &lab DS 0
- &lab._quotient DC i4'"ient'
- &lab._remainder DC i4'&remainder'
- MEND
- MACRO
- &lab LongMulRec &lsResult,&msResult
- AIF C:&lsResult,.p1
- LCLA &lsResult
- .p1
- AIF C:&msResult,.p2
- LCLA &msResult
- .p2
- &lab DS 0
- &lab._lsResult DC i4'&lsResult'
- &lab._msResult DC i4'&msResult'
- MEND
- MACRO
- &lab WordDivRec "ient,&remainder
- AIF C:"ient,.p1
- LCLA "ient
- .p1
- AIF C:&remainder,.p2
- LCLA &remainder
- .p2
- &lab DS 0
- &lab._quotient DC i2'"ient'
- &lab._remainder DC i2'&remainder'
- MEND
- MACRO
- &lab LColorTable &listFrameClr,&listNorTextClr,&listSelTextClr,&listNorBackClr,&listSelBackClr
- AIF C:&listFrameClr,.p1
- LCLA &listFrameClr
- .p1
- AIF C:&listNorTextClr,.p2
- LCLA &listNorTextClr
- .p2
- AIF C:&listSelTextClr,.p3
- LCLA &listSelTextClr
- .p3
- AIF C:&listNorBackClr,.p4
- LCLA &listNorBackClr
- .p4
- AIF C:&listSelBackClr,.p5
- LCLA &listSelBackClr
- .p5
- &lab DS 0
- &lab._listFrameClr DC i2'&listFrameClr'
- &lab._listNorTextClr DC i2'&listNorTextClr'
- &lab._listSelTextClr DC i2'&listSelTextClr'
- &lab._listNorBackClr DC i2'&listNorBackClr'
- &lab._listSelBackClr DC i2'&listSelBackClr'
- MEND
- MACRO
- &lab MemRec &memPtr,&memFlag
- AIF C:&memPtr,.p1
- LCLA &memPtr
- .p1
- AIF C:&memFlag,.p2
- LCLA &memFlag
- .p2
- &lab DS 0
- &lab._memPtr DC i4'&memPtr'
- &lab._memFlag DC i1'&memFlag'
- MEND
- MACRO
- &lab ListCtlRec &ctlNext,&ctlOwner,&ctlRect_v1,&ctlRect_h1,&ctlRect_v2,&ctlRect_h2,&ctlFlag,&ctlHilite,&ctlValue,&ctlProc,&ctlAction,&ctlData,&ctlRefCon,&ctlColor,&ctlMemDraw,&ctlMemHeight,&ctlMemSize,&ctlList,&ctlListBar
- AIF C:&ctlNext,.p1
- LCLA &ctlNext
- .p1
- AIF C:&ctlOwner,.p2
- LCLA &ctlOwner
- .p2
- AIF C:&ctlRect_v1,.p3
- LCLA &ctlRect_v1
- .p3
- AIF C:&ctlRect_h1,.p4
- LCLA &ctlRect_h1
- .p4
- AIF C:&ctlRect_v2,.p5
- LCLA &ctlRect_v2
- .p5
- AIF C:&ctlRect_h2,.p6
- LCLA &ctlRect_h2
- .p6
- AIF C:&ctlFlag,.p7
- LCLA &ctlFlag
- .p7
- AIF C:&ctlHilite,.p8
- LCLA &ctlHilite
- .p8
- AIF C:&ctlValue,.p9
- LCLA &ctlValue
- .p9
- AIF C:&ctlProc,.p10
- LCLA &ctlProc
- .p10
- AIF C:&ctlAction,.p11
- LCLA &ctlAction
- .p11
- AIF C:&ctlData,.p12
- LCLA &ctlData
- .p12
- AIF C:&ctlRefCon,.p13
- LCLA &ctlRefCon
- .p13
- AIF C:&ctlColor,.p14
- LCLA &ctlColor
- .p14
- AIF C:&ctlMemDraw,.p15
- LCLA &ctlMemDraw
- .p15
- AIF C:&ctlMemHeight,.p16
- LCLA &ctlMemHeight
- .p16
- AIF C:&ctlMemSize,.p17
- LCLA &ctlMemSize
- .p17
- AIF C:&ctlList,.p18
- LCLA &ctlList
- .p18
- AIF C:&ctlListBar,.p19
- LCLA &ctlListBar
- .p19
- &lab DS 0
- &lab._ctlNext DC i4'&ctlNext'
- &lab._ctlOwner DC i4'&ctlOwner'
- &lab._ctlRect Rect &ctlRect_v1,&ctlRect_h1,&ctlRect_v2,&ctlRect_h2
- &lab._ctlFlag DC i1'&ctlFlag'
- &lab._ctlHilite DC i1'&ctlHilite'
- &lab._ctlValue DC i2'&ctlValue'
- &lab._ctlProc DC i4'&ctlProc'
- &lab._ctlAction DC i4'&ctlAction'
- &lab._ctlData DC i4'&ctlData'
- &lab._ctlRefCon DC i4'&ctlRefCon'
- &lab._ctlColor DC i4'&ctlColor'
- &lab._ctlMemDraw DC i4'&ctlMemDraw'
- &lab._ctlMemHeight DC i2'&ctlMemHeight'
- &lab._ctlMemSize DC i2'&ctlMemSize'
- &lab._ctlList DC i4'&ctlList'
- &lab._ctlListBar DC i4'&ctlListBar'
- MEND
- MACRO
- &lab ListRec &listRect_v1,&listRect_h1,&listRect_v2,&listRect_h2,&listSize,&listView,&listType,&listStart,&listCtl,&listDraw,&listMemHeight,&listMemSize,&listPointer,&listRefCon,&listScrollClr
- AIF C:&listRect_v1,.p1
- LCLA &listRect_v1
- .p1
- AIF C:&listRect_h1,.p2
- LCLA &listRect_h1
- .p2
- AIF C:&listRect_v2,.p3
- LCLA &listRect_v2
- .p3
- AIF C:&listRect_h2,.p4
- LCLA &listRect_h2
- .p4
- AIF C:&listSize,.p5
- LCLA &listSize
- .p5
- AIF C:&listView,.p6
- LCLA &listView
- .p6
- AIF C:&listType,.p7
- LCLA &listType
- .p7
- AIF C:&listStart,.p8
- LCLA &listStart
- .p8
- AIF C:&listCtl,.p9
- LCLA &listCtl
- .p9
- AIF C:&listDraw,.p10
- LCLA &listDraw
- .p10
- AIF C:&listMemHeight,.p11
- LCLA &listMemHeight
- .p11
- AIF C:&listMemSize,.p12
- LCLA &listMemSize
- .p12
- AIF C:&listPointer,.p13
- LCLA &listPointer
- .p13
- AIF C:&listRefCon,.p14
- LCLA &listRefCon
- .p14
- AIF C:&listScrollClr,.p15
- LCLA &listScrollClr
- .p15
- &lab DS 0
- &lab._listRect Rect &listRect_v1,&listRect_h1,&listRect_v2,&listRect_h2
- &lab._listSize DC i2'&listSize'
- &lab._listView DC i2'&listView'
- &lab._listType DC i2'&listType'
- &lab._listStart DC i2'&listStart'
- &lab._listCtl DC i4'&listCtl'
- &lab._listDraw DC i4'&listDraw'
- &lab._listMemHeight DC i2'&listMemHeight'
- &lab._listMemSize DC i2'&listMemSize'
- &lab._listPointer DC i4'&listPointer'
- &lab._listRefCon DC i4'&listRefCon'
- &lab._listScrollClr DC i4'&listScrollClr'
- MEND
- MACRO
- &lab InitialLoadOutputRec &userID,&startAddr,&dPageAddr,&buffSize
- AIF C:&userID,.p1
- LCLA &userID
- .p1
- AIF C:&startAddr,.p2
- LCLA &startAddr
- .p2
- AIF C:&dPageAddr,.p3
- LCLA &dPageAddr
- .p3
- AIF C:&buffSize,.p4
- LCLA &buffSize
- .p4
- &lab DS 0
- &lab._userID DC i2'&userID'
- &lab._startAddr DC i4'&startAddr'
- &lab._dPageAddr DC i2'&dPageAddr'
- &lab._buffSize DC i2'&buffSize'
- MEND
- MACRO
- &lab RestartOutRec &userID,&startAddr,&dPageAddr,&buffSize
- AIF C:&userID,.p1
- LCLA &userID
- .p1
- AIF C:&startAddr,.p2
- LCLA &startAddr
- .p2
- AIF C:&dPageAddr,.p3
- LCLA &dPageAddr
- .p3
- AIF C:&buffSize,.p4
- LCLA &buffSize
- .p4
- &lab DS 0
- &lab._userID DC i2'&userID'
- &lab._startAddr DC i4'&startAddr'
- &lab._dPageAddr DC i2'&dPageAddr'
- &lab._buffSize DC i2'&buffSize'
- MEND
- MACRO
- &lab LoadSegNameOut &segAddr,&userID,&fileNum,&segNum
- AIF C:&segAddr,.p1
- LCLA &segAddr
- .p1
- AIF C:&userID,.p2
- LCLA &userID
- .p2
- AIF C:&fileNum,.p3
- LCLA &fileNum
- .p3
- AIF C:&segNum,.p4
- LCLA &segNum
- .p4
- &lab DS 0
- &lab._segAddr DC i4'&segAddr'
- &lab._userID DC i2'&userID'
- &lab._fileNum DC i2'&fileNum'
- &lab._segNum DC i2'&segNum'
- MEND
- MACRO
- &lab UnloadSegOutRec &userID,&fileNum,&segNum
- AIF C:&userID,.p1
- LCLA &userID
- .p1
- AIF C:&fileNum,.p2
- LCLA &fileNum
- .p2
- AIF C:&segNum,.p3
- LCLA &segNum
- .p3
- &lab DS 0
- &lab._userID DC i2'&userID'
- &lab._fileNum DC i2'&fileNum'
- &lab._segNum DC i2'&segNum'
- MEND
- MACRO
- &lab QDIconRecord &iconType,&iconSize,&iconHeight,&iconWidth,&iconImage,&iconMask
- AIF C:&iconType,.p1
- LCLA &iconType
- .p1
- AIF C:&iconSize,.p2
- LCLA &iconSize
- .p2
- AIF C:&iconHeight,.p3
- LCLA &iconHeight
- .p3
- AIF C:&iconWidth,.p4
- LCLA &iconWidth
- .p4
- AIF C:&iconImage,.p5
- LCLA &iconImage
- .p5
- AIF C:&iconMask,.p6
- LCLA &iconMask
- .p6
- &lab DS 0
- &lab._iconType DC i2'&iconType'
- &lab._iconSize DC i2'&iconSize'
- &lab._iconHeight DC i2'&iconHeight'
- &lab._iconWidth DC i2'&iconWidth'
- &lab._iconImage DC i1'&iconImage'
- &lab._iconMask DC i1'&iconMask'
- MEND
- MACRO
- &lab Picture &picSCB,&picFrame_v1,&picFrame_h1,&picFrame_v2,&picFrame_h2,&pVersion
- AIF C:&picSCB,.p1
- LCLA &picSCB
- .p1
- AIF C:&picFrame_v1,.p2
- LCLA &picFrame_v1
- .p2
- AIF C:&picFrame_h1,.p3
- LCLA &picFrame_h1
- .p3
- AIF C:&picFrame_v2,.p4
- LCLA &picFrame_v2
- .p4
- AIF C:&picFrame_h2,.p5
- LCLA &picFrame_h2
- .p5
- AIF C:&pVersion,.p6
- LCLA &pVersion
- .p6
- &lab DS 0
- &lab._picSCB DC i2'&picSCB'
- &lab._picFrame Rect &picFrame_v1,&picFrame_h1,&picFrame_v2,&picFrame_h2
- &lab._pVersion DC i2'&pVersion'
- MEND
- MACRO
- &lab LeakTable &leakCount,&leakColors
- AIF C:&leakCount,.p1
- LCLA &leakCount
- .p1
- AIF C:&leakColors,.p2
- LCLA &leakColors
- .p2
- &lab DS 0
- &lab._leakCount DC i2'&leakCount'
- &lab._leakColors DC i2'&leakColors'
- MEND
- MACRO
- &lab MessageRec &messageNext,&messageType,&messageData,&fileNames
- AIF C:&messageNext,.p1
- LCLA &messageNext
- .p1
- AIF C:&messageType,.p2
- LCLA &messageType
- .p2
- AIF C:&messageData,.p3
- LCLA &messageData
- .p3
- AIF C:&fileNames,.p4
- LCLA &fileNames
- .p4
- &lab DS 0
- &lab._messageNext DC i4'&messageNext'
- &lab._messageType DC i2'&messageType'
- &lab._messageData DC i2'&messageData'
- &lab._fileNames DC i100'&fileNames'
- MEND
- MACRO
- &lab ToolSpec &toolNumber,&minVersion
- AIF C:&toolNumber,.p1
- LCLA &toolNumber
- .p1
- AIF C:&minVersion,.p2
- LCLA &minVersion
- .p2
- &lab DS 0
- &lab._toolNumber DC i2'&toolNumber'
- &lab._minVersion DC i2'&minVersion'
- MEND
- MACRO
- &lab ToolTable &toolCount,&theTools
- AIF C:&toolCount,.p1
- LCLA &toolCount
- .p1
- AIF C:&theTools,.p2
- LCLA &theTools
- .p2
- &lab DS 0
- &lab._toolCount DC i2'&toolCount'
- &lab._theTools DC i4'&theTools'
- MEND
- MACRO
- &lab StartStopRecord &flags,&videoMode,&resFileID,&dPageHandle,&numTools,&theTools
- AIF C:&flags,.p1
- LCLA &flags
- .p1
- AIF C:&videoMode,.p2
- LCLA &videoMode
- .p2
- AIF C:&resFileID,.p3
- LCLA &resFileID
- .p3
- AIF C:&dPageHandle,.p4
- LCLA &dPageHandle
- .p4
- AIF C:&numTools,.p5
- LCLA &numTools
- .p5
- AIF C:&theTools,.p6
- LCLA &theTools
- .p6
- &lab DS 0
- &lab._flags DC i2'&flags'
- &lab._videoMode DC i2'&videoMode'
- &lab._resFileID DC i2'&resFileID'
- &lab._dPageHandle DC i4'&dPageHandle'
- &lab._numTools DC i2'&numTools'
- &lab._theTools DC i4'&theTools'
- MEND
- MACRO
- &lab MenuRec &menuID,&menuWidth,&menuHeight,&menuProc,&menuFlag,&numOfItems,&titleWidth,&titleName,&menuCache
- AIF C:&menuID,.p1
- LCLA &menuID
- .p1
- AIF C:&menuWidth,.p2
- LCLA &menuWidth
- .p2
- AIF C:&menuHeight,.p3
- LCLA &menuHeight
- .p3
- AIF C:&menuProc,.p4
- LCLA &menuProc
- .p4
- AIF C:&menuFlag,.p5
- LCLA &menuFlag
- .p5
- AIF C:&numOfItems,.p6
- LCLA &numOfItems
- .p6
- AIF C:&titleWidth,.p7
- LCLA &titleWidth
- .p7
- AIF C:&titleName,.p8
- LCLA &titleName
- .p8
- AIF C:&menuCache,.p9
- LCLA &menuCache
- .p9
- &lab DS 0
- &lab._menuID DC i2'&menuID'
- &lab._menuWidth DC i2'&menuWidth'
- &lab._menuHeight DC i2'&menuHeight'
- &lab._menuProc DC i4'&menuProc'
- &lab._menuFlag DC i2'&menuFlag'
- &lab._numOfItems DC i2'&numOfItems'
- &lab._titleWidth DC i2'&titleWidth'
- &lab._titleName DC i4'&titleName'
- &lab._menuCache DC i4'&menuCache'
- MEND
- MACRO
- &lab MenuItemTemplate &version,&itemID,&itemChar,&itemAltChar,&itemCheck,&itemFlag,&itemTitleRef
- AIF C:&version,.p1
- LCLA &version
- .p1
- AIF C:&itemID,.p2
- LCLA &itemID
- .p2
- AIF C:&itemChar,.p3
- LCLA &itemChar
- .p3
- AIF C:&itemAltChar,.p4
- LCLA &itemAltChar
- .p4
- AIF C:&itemCheck,.p5
- LCLA &itemCheck
- .p5
- AIF C:&itemFlag,.p6
- LCLA &itemFlag
- .p6
- AIF C:&itemTitleRef,.p7
- LCLA &itemTitleRef
- .p7
- &lab DS 0
- &lab._version DC i2'&version'
- &lab._itemID DC i2'&itemID'
- &lab._itemChar DC i1'&itemChar'
- &lab._itemAltChar DC i1'&itemAltChar'
- &lab._itemCheck DC i2'&itemCheck'
- &lab._itemFlag DC i2'&itemFlag'
- &lab._itemTitleRef DC i4'&itemTitleRef'
- MEND
- MACRO
- &lab MenuTemplate &version,&menuID,&menuFlag,&menuTitleRef,&itemRefArray
- AIF C:&version,.p1
- LCLA &version
- .p1
- AIF C:&menuID,.p2
- LCLA &menuID
- .p2
- AIF C:&menuFlag,.p3
- LCLA &menuFlag
- .p3
- AIF C:&menuTitleRef,.p4
- LCLA &menuTitleRef
- .p4
- AIF C:&itemRefArray,.p5
- LCLA &itemRefArray
- .p5
- &lab DS 0
- &lab._version DC i2'&version'
- &lab._menuID DC i2'&menuID'
- &lab._menuFlag DC i2'&menuFlag'
- &lab._menuTitleRef DC i4'&menuTitleRef'
- &lab._itemRefArray DC i4'&itemRefArray'
- MEND
- MACRO
- &lab MenuBarTemplate &version,&menuFlag,&menuRefArray
- AIF C:&version,.p1
- LCLA &version
- .p1
- AIF C:&menuFlag,.p2
- LCLA &menuFlag
- .p2
- AIF C:&menuRefArray,.p3
- LCLA &menuRefArray
- .p3
- &lab DS 0
- &lab._version DC i2'&version'
- &lab._menuFlag DC i2'&menuFlag'
- &lab._menuRefArray DC i4'&menuRefArray'
- MEND
- MACRO
- &lab MiBufInfo &bufSize,&address
- AIF C:&bufSize,.p1
- LCLA &bufSize
- .p1
- AIF C:&address,.p2
- LCLA &address
- .p2
- &lab DS 0
- &lab._bufSize DC i2'&bufSize'
- &lab._address DC i4'&address'
- MEND
- MACRO
- &lab MiDriverInfo &slot,&external,&pathname
- AIF C:&slot,.p1
- LCLA &slot
- .p1
- AIF C:&external,.p2
- LCLA &external
- .p2
- AIF C:&pathname,.p3
- LCLA &pathname
- .p3
- &lab DS 0
- &lab._slot DC i2'&slot'
- &lab._external DC i2'&external'
- &lab._pathname DC i1'&pathname'
- MEND
- MACRO
- &lab LocRec &curPhraseItem,&curPattItem,&curLevel
- AIF C:&curPhraseItem,.p1
- LCLA &curPhraseItem
- .p1
- AIF C:&curPattItem,.p2
- LCLA &curPattItem
- .p2
- AIF C:&curLevel,.p3
- LCLA &curLevel
- .p3
- &lab DS 0
- &lab._curPhraseItem DC i2'&curPhraseItem'
- &lab._curPattItem DC i2'&curPattItem'
- &lab._curLevel DC i2'&curLevel'
- MEND
- MACRO
- &lab Envelope &st1BkPt,&st1Increment,&st2BkPt,&st2Increment,&st3BkPt,&st3Increment,&st4BkPt,&st4Increment,&st5BkPt,&st5Increment,&st6BkPt,&st6Increment,&st7BkPt,&st7Increment,&st8BkPt,&st8Increment
- AIF C:&st1BkPt,.p1
- LCLA &st1BkPt
- .p1
- AIF C:&st1Increment,.p2
- LCLA &st1Increment
- .p2
- AIF C:&st2BkPt,.p3
- LCLA &st2BkPt
- .p3
- AIF C:&st2Increment,.p4
- LCLA &st2Increment
- .p4
- AIF C:&st3BkPt,.p5
- LCLA &st3BkPt
- .p5
- AIF C:&st3Increment,.p6
- LCLA &st3Increment
- .p6
- AIF C:&st4BkPt,.p7
- LCLA &st4BkPt
- .p7
- AIF C:&st4Increment,.p8
- LCLA &st4Increment
- .p8
- AIF C:&st5BkPt,.p9
- LCLA &st5BkPt
- .p9
- AIF C:&st5Increment,.p10
- LCLA &st5Increment
- .p10
- AIF C:&st6BkPt,.p11
- LCLA &st6BkPt
- .p11
- AIF C:&st6Increment,.p12
- LCLA &st6Increment
- .p12
- AIF C:&st7BkPt,.p13
- LCLA &st7BkPt
- .p13
- AIF C:&st7Increment,.p14
- LCLA &st7Increment
- .p14
- AIF C:&st8BkPt,.p15
- LCLA &st8BkPt
- .p15
- AIF C:&st8Increment,.p16
- LCLA &st8Increment
- .p16
- &lab DS 0
- &lab._st1BkPt DC i1'&st1BkPt'
- &lab._st1Increment DC i2'&st1Increment'
- &lab._st2BkPt DC i1'&st2BkPt'
- &lab._st2Increment DC i2'&st2Increment'
- &lab._st3BkPt DC i1'&st3BkPt'
- &lab._st3Increment DC i2'&st3Increment'
- &lab._st4BkPt DC i1'&st4BkPt'
- &lab._st4Increment DC i2'&st4Increment'
- &lab._st5BkPt DC i1'&st5BkPt'
- &lab._st5Increment DC i2'&st5Increment'
- &lab._st6BkPt DC i1'&st6BkPt'
- &lab._st6Increment DC i2'&st6Increment'
- &lab._st7BkPt DC i1'&st7BkPt'
- &lab._st7Increment DC i2'&st7Increment'
- &lab._st8BkPt DC i1'&st8BkPt'
- &lab._st8Increment DC i2'&st8Increment'
- MEND
- MACRO
- &lab WaveForm &wfTopKey,&wfWaveAddress,&wfWaveSize,&wfDocMode,&wfRelPitch
- AIF C:&wfTopKey,.p1
- LCLA &wfTopKey
- .p1
- AIF C:&wfWaveAddress,.p2
- LCLA &wfWaveAddress
- .p2
- AIF C:&wfWaveSize,.p3
- LCLA &wfWaveSize
- .p3
- AIF C:&wfDocMode,.p4
- LCLA &wfDocMode
- .p4
- AIF C:&wfRelPitch,.p5
- LCLA &wfRelPitch
- .p5
- &lab DS 0
- &lab._wfTopKey DC i1'&wfTopKey'
- &lab._wfWaveAddress DC i1'&wfWaveAddress'
- &lab._wfWaveSize DC i1'&wfWaveSize'
- &lab._wfDocMode DC i1'&wfDocMode'
- &lab._wfRelPitch DC i2'&wfRelPitch'
- MEND
- MACRO
- &lab Instrument &theEnvelope_st1BkPt,&theEnvelope_st1Increment,&theEnvelope_st2BkPt,&theEnvelope_st2Increment,&theEnvelope_st3BkPt,&theEnvelope_st3Increment,&theEnvelope_st4BkPt,&theEnvelope_st4Increment,&theEnvelope_st5BkPt,&theEnvelope_st5Increment,&theEnvelope_st6BkPt,&theEnvelope_st6Increment,&theEnvelope_st7BkPt,&theEnvelope_st7Increment,&theEnvelope_st8BkPt,&theEnvelope_st8Increment,&releaseSegment,&priorityIncrement,&pitchBendRange,&vibratoDepth,&vibratoSpeed,&inSpare,&aWaveCount,&bWaveCount,&aWaveList,&bWaveList
- AIF C:&theEnvelope_st1BkPt,.p1
- LCLA &theEnvelope_st1BkPt
- .p1
- AIF C:&theEnvelope_st1Increment,.p2
- LCLA &theEnvelope_st1Increment
- .p2
- AIF C:&theEnvelope_st2BkPt,.p3
- LCLA &theEnvelope_st2BkPt
- .p3
- AIF C:&theEnvelope_st2Increment,.p4
- LCLA &theEnvelope_st2Increment
- .p4
- AIF C:&theEnvelope_st3BkPt,.p5
- LCLA &theEnvelope_st3BkPt
- .p5
- AIF C:&theEnvelope_st3Increment,.p6
- LCLA &theEnvelope_st3Increment
- .p6
- AIF C:&theEnvelope_st4BkPt,.p7
- LCLA &theEnvelope_st4BkPt
- .p7
- AIF C:&theEnvelope_st4Increment,.p8
- LCLA &theEnvelope_st4Increment
- .p8
- AIF C:&theEnvelope_st5BkPt,.p9
- LCLA &theEnvelope_st5BkPt
- .p9
- AIF C:&theEnvelope_st5Increment,.p10
- LCLA &theEnvelope_st5Increment
- .p10
- AIF C:&theEnvelope_st6BkPt,.p11
- LCLA &theEnvelope_st6BkPt
- .p11
- AIF C:&theEnvelope_st6Increment,.p12
- LCLA &theEnvelope_st6Increment
- .p12
- AIF C:&theEnvelope_st7BkPt,.p13
- LCLA &theEnvelope_st7BkPt
- .p13
- AIF C:&theEnvelope_st7Increment,.p14
- LCLA &theEnvelope_st7Increment
- .p14
- AIF C:&theEnvelope_st8BkPt,.p15
- LCLA &theEnvelope_st8BkPt
- .p15
- AIF C:&theEnvelope_st8Increment,.p16
- LCLA &theEnvelope_st8Increment
- .p16
- AIF C:&releaseSegment,.p17
- LCLA &releaseSegment
- .p17
- AIF C:&priorityIncrement,.p18
- LCLA &priorityIncrement
- .p18
- AIF C:&pitchBendRange,.p19
- LCLA &pitchBendRange
- .p19
- AIF C:&vibratoDepth,.p20
- LCLA &vibratoDepth
- .p20
- AIF C:&vibratoSpeed,.p21
- LCLA &vibratoSpeed
- .p21
- AIF C:&inSpare,.p22
- LCLA &inSpare
- .p22
- AIF C:&aWaveCount,.p23
- LCLA &aWaveCount
- .p23
- AIF C:&bWaveCount,.p24
- LCLA &bWaveCount
- .p24
- AIF C:&aWaveList,.p25
- LCLA &aWaveList
- .p25
- AIF C:&bWaveList,.p26
- LCLA &bWaveList
- .p26
- &lab DS 0
- &lab._theEnvelope Envelope &theEnvelope_st1BkPt,&theEnvelope_st1Increment,&theEnvelope_st2BkPt,&theEnvelope_st2Increment,&theEnvelope_st3BkPt,&theEnvelope_st3Increment,&theEnvelope_st4BkPt,&theEnvelope_st4Increment,&theEnvelope_st5BkPt,&theEnvelope_st5Increment,&theEnvelope_st6BkPt,&theEnvelope_st6Increment,&theEnvelope_st7BkPt,&theEnvelope_st7Increment,&theEnvelope_st8BkPt,&theEnvelope_st8Increment
- &lab._releaseSegment DC i1'&releaseSegment'
- &lab._priorityIncrement DC i1'&priorityIncrement'
- &lab._pitchBendRange DC i1'&pitchBendRange'
- &lab._vibratoDepth DC i1'&vibratoDepth'
- &lab._vibratoSpeed DC i1'&vibratoSpeed'
- &lab._inSpare DC i1'&inSpare'
- &lab._aWaveCount DC i1'&aWaveCount'
- &lab._bWaveCount DC i1'&bWaveCount'
- &lab._aWaveList DC i6'&aWaveList'
- &lab._bWaveList DC i6'&bWaveList'
- MEND
- MACRO
- &lab BlockRec &blockDevNum,&blockDataBuffer,&blockNum
- AIF C:&blockDevNum,.p1
- LCLA &blockDevNum
- .p1
- AIF C:&blockDataBuffer,.p2
- LCLA &blockDataBuffer
- .p2
- AIF C:&blockNum,.p3
- LCLA &blockNum
- .p3
- &lab DS 0
- &lab._blockDevNum DC i2'&blockDevNum'
- &lab._blockDataBuffer DC i4'&blockDataBuffer'
- &lab._blockNum DC i4'&blockNum'
- MEND
- MACRO
- &lab DevNumRec &devName,&devNum
- AIF C:&devName,.p1
- LCLA &devName
- .p1
- AIF C:&devNum,.p2
- LCLA &devNum
- .p2
- &lab DS 0
- &lab._devName DC i4'&devName'
- &lab._devNum DC i2'&devNum'
- MEND
- MACRO
- &lab DInfoRec &devNum,&devName
- AIF C:&devNum,.p1
- LCLA &devNum
- .p1
- AIF C:&devName,.p2
- LCLA &devName
- .p2
- &lab DS 0
- &lab._devNum DC i2'&devNum'
- &lab._devName DC i4'&devName'
- MEND
- MACRO
- &lab DirEntryRec &refNum,&flags,&base,&displacement,&nameBuffer,&entryNum,&fileType,&endOfFile,&blockCount,&createTime_second,&createTime_minute,&createTime_hour,&createTime_year,&createTime_day,&createTime_month,&createTime_extra,&createTime_weekDay,&modTime_second,&modTime_minute,&modTime_hour,&modTime_year,&modTime_day,&modTime_month,&modTime_extra,&modTime_weekDay,&access,&auxType,&fileSysID
- AIF C:&refNum,.p1
- LCLA &refNum
- .p1
- AIF C:&flags,.p2
- LCLA &flags
- .p2
- AIF C:&base,.p3
- LCLA &base
- .p3
- AIF C:&displacement,.p4
- LCLA &displacement
- .p4
- AIF C:&nameBuffer,.p5
- LCLA &nameBuffer
- .p5
- AIF C:&entryNum,.p6
- LCLA &entryNum
- .p6
- AIF C:&fileType,.p7
- LCLA &fileType
- .p7
- AIF C:&endOfFile,.p8
- LCLA &endOfFile
- .p8
- AIF C:&blockCount,.p9
- LCLA &blockCount
- .p9
- AIF C:&createTime_second,.p10
- LCLA &createTime_second
- .p10
- AIF C:&createTime_minute,.p11
- LCLA &createTime_minute
- .p11
- AIF C:&createTime_hour,.p12
- LCLA &createTime_hour
- .p12
- AIF C:&createTime_year,.p13
- LCLA &createTime_year
- .p13
- AIF C:&createTime_day,.p14
- LCLA &createTime_day
- .p14
- AIF C:&createTime_month,.p15
- LCLA &createTime_month
- .p15
- AIF C:&createTime_extra,.p16
- LCLA &createTime_extra
- .p16
- AIF C:&createTime_weekDay,.p17
- LCLA &createTime_weekDay
- .p17
- AIF C:&modTime_second,.p18
- LCLA &modTime_second
- .p18
- AIF C:&modTime_minute,.p19
- LCLA &modTime_minute
- .p19
- AIF C:&modTime_hour,.p20
- LCLA &modTime_hour
- .p20
- AIF C:&modTime_year,.p21
- LCLA &modTime_year
- .p21
- AIF C:&modTime_day,.p22
- LCLA &modTime_day
- .p22
- AIF C:&modTime_month,.p23
- LCLA &modTime_month
- .p23
- AIF C:&modTime_extra,.p24
- LCLA &modTime_extra
- .p24
- AIF C:&modTime_weekDay,.p25
- LCLA &modTime_weekDay
- .p25
- AIF C:&access,.p26
- LCLA &access
- .p26
- AIF C:&auxType,.p27
- LCLA &auxType
- .p27
- AIF C:&fileSysID,.p28
- LCLA &fileSysID
- .p28
- &lab DS 0
- &lab._refNum DC i2'&refNum'
- &lab._flags DC i2'&flags'
- &lab._base DC i2'&base'
- &lab._displacement DC i2'&displacement'
- &lab._nameBuffer DC i4'&nameBuffer'
- &lab._entryNum DC i2'&entryNum'
- &lab._fileType DC i2'&fileType'
- &lab._endOfFile DC i4'&endOfFile'
- &lab._blockCount DC i4'&blockCount'
- &lab._createTime TimeRec &createTime_second,&createTime_minute,&createTime_hour,&createTime_year,&createTime_day,&createTime_month,&createTime_extra,&createTime_weekDay
- &lab._modTime TimeRec &modTime_second,&modTime_minute,&modTime_hour,&modTime_year,&modTime_day,&modTime_month,&modTime_extra,&modTime_weekDay
- &lab._access DC i2'&access'
- &lab._auxType DC i4'&auxType'
- &lab._fileSysID DC i2'&fileSysID'
- MEND
- MACRO
- &lab EOFRec &eofRefNum,&eofPosition
- AIF C:&eofRefNum,.p1
- LCLA &eofRefNum
- .p1
- AIF C:&eofPosition,.p2
- LCLA &eofPosition
- .p2
- &lab DS 0
- &lab._eofRefNum DC i2'&eofRefNum'
- &lab._eofPosition DC i4'&eofPosition'
- MEND
- MACRO
- &lab FileIORec &fileRefNum,&dataBuffer,&requestCount,&transferCount
- AIF C:&fileRefNum,.p1
- LCLA &fileRefNum
- .p1
- AIF C:&dataBuffer,.p2
- LCLA &dataBuffer
- .p2
- AIF C:&requestCount,.p3
- LCLA &requestCount
- .p3
- AIF C:&transferCount,.p4
- LCLA &transferCount
- .p4
- &lab DS 0
- &lab._fileRefNum DC i2'&fileRefNum'
- &lab._dataBuffer DC i4'&dataBuffer'
- &lab._requestCount DC i4'&requestCount'
- &lab._transferCount DC i4'&transferCount'
- MEND
- MACRO
- &lab FileRec &pathname,&fAccess,&fileType,&auxType,&storageType,&createDate,&createTime,&modDate,&modTime,&blocksUsed
- AIF C:&pathname,.p1
- LCLA &pathname
- .p1
- AIF C:&fAccess,.p2
- LCLA &fAccess
- .p2
- AIF C:&fileType,.p3
- LCLA &fileType
- .p3
- AIF C:&auxType,.p4
- LCLA &auxType
- .p4
- AIF C:&storageType,.p5
- LCLA &storageType
- .p5
- AIF C:&createDate,.p6
- LCLA &createDate
- .p6
- AIF C:&createTime,.p7
- LCLA &createTime
- .p7
- AIF C:&modDate,.p8
- LCLA &modDate
- .p8
- AIF C:&modTime,.p9
- LCLA &modTime
- .p9
- AIF C:&blocksUsed,.p10
- LCLA &blocksUsed
- .p10
- &lab DS 0
- &lab._pathname DC i4'&pathname'
- &lab._fAccess DC i2'&fAccess'
- &lab._fileType DC i2'&fileType'
- &lab._auxType DC i4'&auxType'
- &lab._storageType DC i2'&storageType'
- &lab._createDate DC i2'&createDate'
- &lab._createTime DC i2'&createTime'
- &lab._modDate DC i2'&modDate'
- &lab._modTime DC i2'&modTime'
- &lab._blocksUsed DC i4'&blocksUsed'
- MEND
- MACRO
- &lab FormatRec &devName,&volName,&fileSysID
- AIF C:&devName,.p1
- LCLA &devName
- .p1
- AIF C:&volName,.p2
- LCLA &volName
- .p2
- AIF C:&fileSysID,.p3
- LCLA &fileSysID
- .p3
- &lab DS 0
- &lab._devName DC i4'&devName'
- &lab._volName DC i4'&volName'
- &lab._fileSysID DC i2'&fileSysID'
- MEND
- MACRO
- &lab EraseDiskRec &devName,&volName,&fileSysID
- AIF C:&devName,.p1
- LCLA &devName
- .p1
- AIF C:&volName,.p2
- LCLA &volName
- .p2
- AIF C:&fileSysID,.p3
- LCLA &fileSysID
- .p3
- &lab DS 0
- &lab._devName DC i4'&devName'
- &lab._volName DC i4'&volName'
- &lab._fileSysID DC i2'&fileSysID'
- MEND
- MACRO
- &lab InterruptRec &intNum,&intCode
- AIF C:&intNum,.p1
- LCLA &intNum
- .p1
- AIF C:&intCode,.p2
- LCLA &intCode
- .p2
- &lab DS 0
- &lab._intNum DC i2'&intNum'
- &lab._intCode DC i4'&intCode'
- MEND
- MACRO
- &lab MarkRec &markRefNum,&position
- AIF C:&markRefNum,.p1
- LCLA &markRefNum
- .p1
- AIF C:&position,.p2
- LCLA &position
- .p2
- &lab DS 0
- &lab._markRefNum DC i2'&markRefNum'
- &lab._position DC i4'&position'
- MEND
- MACRO
- &lab NewLineRec &newLRefNum,&enableMask,&newlineChar
- AIF C:&newLRefNum,.p1
- LCLA &newLRefNum
- .p1
- AIF C:&enableMask,.p2
- LCLA &enableMask
- .p2
- AIF C:&newlineChar,.p3
- LCLA &newlineChar
- .p3
- &lab DS 0
- &lab._newLRefNum DC i2'&newLRefNum'
- &lab._enableMask DC i2'&enableMask'
- &lab._newlineChar DC i2'&newlineChar'
- MEND
- MACRO
- &lab OpenRec &openRefNum,&openPathname,&ioBuffer
- AIF C:&openRefNum,.p1
- LCLA &openRefNum
- .p1
- AIF C:&openPathname,.p2
- LCLA &openPathname
- .p2
- AIF C:&ioBuffer,.p3
- LCLA &ioBuffer
- .p3
- &lab DS 0
- &lab._openRefNum DC i2'&openRefNum'
- &lab._openPathname DC i4'&openPathname'
- &lab._ioBuffer DC i4'&ioBuffer'
- MEND
- MACRO
- &lab PathNameRec &pathname,&newPathname
- AIF C:&pathname,.p1
- LCLA &pathname
- .p1
- AIF C:&newPathname,.p2
- LCLA &newPathname
- .p2
- &lab DS 0
- &lab._pathname DC i4'&pathname'
- &lab._newPathname DC i4'&newPathname'
- MEND
- MACRO
- &lab PrefixRec &prefixNum,&prefix
- AIF C:&prefixNum,.p1
- LCLA &prefixNum
- .p1
- AIF C:&prefix,.p2
- LCLA &prefix
- .p2
- &lab DS 0
- &lab._prefixNum DC i2'&prefixNum'
- &lab._prefix DC i4'&prefix'
- MEND
- MACRO
- &lab QuitRec &quitPathname,&flags
- AIF C:&quitPathname,.p1
- LCLA &quitPathname
- .p1
- AIF C:&flags,.p2
- LCLA &flags
- .p2
- &lab DS 0
- &lab._quitPathname DC i4'&quitPathname'
- &lab._flags DC i2'&flags'
- MEND
- MACRO
- &lab VolumeRec &deviceName,&volName,&totalBlocks,&freeBlocks,&fileSysID
- AIF C:&deviceName,.p1
- LCLA &deviceName
- .p1
- AIF C:&volName,.p2
- LCLA &volName
- .p2
- AIF C:&totalBlocks,.p3
- LCLA &totalBlocks
- .p3
- AIF C:&freeBlocks,.p4
- LCLA &freeBlocks
- .p4
- AIF C:&fileSysID,.p5
- LCLA &fileSysID
- .p5
- &lab DS 0
- &lab._deviceName DC i4'&deviceName'
- &lab._volName DC i4'&volName'
- &lab._totalBlocks DC i4'&totalBlocks'
- &lab._freeBlocks DC i4'&freeBlocks'
- &lab._fileSysID DC i2'&fileSysID'
- MEND
- MACRO
- &lab ResHeaderRec &rFileVersion,&rFileToMap,&rFileMapSize,&rFileMemo,&rFileRecSize
- AIF C:&rFileVersion,.p1
- LCLA &rFileVersion
- .p1
- AIF C:&rFileToMap,.p2
- LCLA &rFileToMap
- .p2
- AIF C:&rFileMapSize,.p3
- LCLA &rFileMapSize
- .p3
- AIF C:&rFileMemo,.p4
- LCLA &rFileMemo
- .p4
- AIF C:&rFileRecSize,.p5
- LCLA &rFileRecSize
- .p5
- &lab DS 0
- &lab._rFileVersion DC i4'&rFileVersion'
- &lab._rFileToMap DC i4'&rFileToMap'
- &lab._rFileMapSize DC i4'&rFileMapSize'
- &lab._rFileMemo DC i1'&rFileMemo'
- &lab._rFileRecSize DC i4'&rFileRecSize'
- MEND
- MACRO
- &lab FreeBlockRec &blkOffset,&blkSize
- AIF C:&blkOffset,.p1
- LCLA &blkOffset
- .p1
- AIF C:&blkSize,.p2
- LCLA &blkSize
- .p2
- &lab DS 0
- &lab._blkOffset DC i4'&blkOffset'
- &lab._blkSize DC i4'&blkSize'
- MEND
- MACRO
- &lab ResMap &mapNext,&mapFlag,&mapOffset,&mapSize,&mapToIndex,&mapFileNum,&mapID,&mapIndexSize,&mapIndexUsed,&mapFreeListSize,&mapFreeListUsed,&mapFreeList
- AIF C:&mapNext,.p1
- LCLA &mapNext
- .p1
- AIF C:&mapFlag,.p2
- LCLA &mapFlag
- .p2
- AIF C:&mapOffset,.p3
- LCLA &mapOffset
- .p3
- AIF C:&mapSize,.p4
- LCLA &mapSize
- .p4
- AIF C:&mapToIndex,.p5
- LCLA &mapToIndex
- .p5
- AIF C:&mapFileNum,.p6
- LCLA &mapFileNum
- .p6
- AIF C:&mapID,.p7
- LCLA &mapID
- .p7
- AIF C:&mapIndexSize,.p8
- LCLA &mapIndexSize
- .p8
- AIF C:&mapIndexUsed,.p9
- LCLA &mapIndexUsed
- .p9
- AIF C:&mapFreeListSize,.p10
- LCLA &mapFreeListSize
- .p10
- AIF C:&mapFreeListUsed,.p11
- LCLA &mapFreeListUsed
- .p11
- AIF C:&mapFreeList,.p12
- LCLA &mapFreeList
- .p12
- &lab DS 0
- &lab._mapNext DC i4'&mapNext'
- &lab._mapFlag DC i2'&mapFlag'
- &lab._mapOffset DC i4'&mapOffset'
- &lab._mapSize DC i4'&mapSize'
- &lab._mapToIndex DC i2'&mapToIndex'
- &lab._mapFileNum DC i2'&mapFileNum'
- &lab._mapID DC i2'&mapID'
- &lab._mapIndexSize DC i4'&mapIndexSize'
- &lab._mapIndexUsed DC i4'&mapIndexUsed'
- &lab._mapFreeListSize DC i2'&mapFreeListSize'
- &lab._mapFreeListUsed DC i2'&mapFreeListUsed'
- &lab._mapFreeList DC i8'&mapFreeList'
- MEND
- MACRO
- &lab ResRefRec &resType,&resID,&resOffset,&resAttr,&resSize,&resHandle
- AIF C:&resType,.p1
- LCLA &resType
- .p1
- AIF C:&resID,.p2
- LCLA &resID
- .p2
- AIF C:&resOffset,.p3
- LCLA &resOffset
- .p3
- AIF C:&resAttr,.p4
- LCLA &resAttr
- .p4
- AIF C:&resSize,.p5
- LCLA &resSize
- .p5
- AIF C:&resHandle,.p6
- LCLA &resHandle
- .p6
- &lab DS 0
- &lab._resType DC i2'&resType'
- &lab._resID DC i4'&resID'
- &lab._resOffset DC i4'&resOffset'
- &lab._resAttr DC i2'&resAttr'
- &lab._resSize DC i4'&resSize'
- &lab._resHandle DC i4'&resHandle'
- MEND
- MACRO
- &lab ResourceSpec &resourceType,&resourceID
- AIF C:&resourceType,.p1
- LCLA &resourceType
- .p1
- AIF C:&resourceID,.p2
- LCLA &resourceID
- .p2
- &lab DS 0
- &lab._resourceType DC i2'&resourceType'
- &lab._resourceID DC i4'&resourceID'
- MEND
- MACRO
- &lab ResNameEntry &namedResID,&resName_length,&resName_text
- AIF C:&namedResID,.p1
- LCLA &namedResID
- .p1
- AIF C:&resName_length,.p2
- LCLA &resName_length
- .p2
- AIF C:&resName_text,.p3
- LCLA &resName_text
- .p3
- &lab DS 0
- &lab._namedResID DC i4'&namedResID'
- &lab._resName Str255 &resName_length,&resName_text
- MEND
- MACRO
- &lab ResNameRec &version,&nameCount,&resNameEntries
- AIF C:&version,.p1
- LCLA &version
- .p1
- AIF C:&nameCount,.p2
- LCLA &nameCount
- .p2
- AIF C:&resNameEntries,.p3
- LCLA &resNameEntries
- .p3
- &lab DS 0
- &lab._version DC i2'&version'
- &lab._nameCount DC i4'&nameCount'
- &lab._resNameEntries DC i4'&resNameEntries'
- MEND
- MACRO
- &lab GetLInfoPB &sfile,&dfile,&parms,&istring,&merr,&merrf,&lops,&kflag,&mflags,&pflags,&org
- AIF C:&sfile,.p1
- LCLA &sfile
- .p1
- AIF C:&dfile,.p2
- LCLA &dfile
- .p2
- AIF C:&parms,.p3
- LCLA &parms
- .p3
- AIF C:&istring,.p4
- LCLA &istring
- .p4
- AIF C:&merr,.p5
- LCLA &merr
- .p5
- AIF C:&merrf,.p6
- LCLA &merrf
- .p6
- AIF C:&lops,.p7
- LCLA &lops
- .p7
- AIF C:&kflag,.p8
- LCLA &kflag
- .p8
- AIF C:&mflags,.p9
- LCLA &mflags
- .p9
- AIF C:&pflags,.p10
- LCLA &pflags
- .p10
- AIF C:&org,.p11
- LCLA &org
- .p11
- &lab DS 0
- &lab._sfile DC i4'&sfile'
- &lab._dfile DC i4'&dfile'
- &lab._parms DC i4'&parms'
- &lab._istring DC i4'&istring'
- &lab._merr DC i1'&merr'
- &lab._merrf DC i1'&merrf'
- &lab._lops DC i1'&lops'
- &lab._kflag DC i1'&kflag'
- &lab._mflags DC i4'&mflags'
- &lab._pflags DC i4'&pflags'
- &lab._org DC i4'&org'
- MEND
- MACRO
- &lab SoundParamBlock &waveStart,&waveSize,&freqOffset,&docBuffer,&bufferSize,&nextWavePtr,&volSetting
- AIF C:&waveStart,.p1
- LCLA &waveStart
- .p1
- AIF C:&waveSize,.p2
- LCLA &waveSize
- .p2
- AIF C:&freqOffset,.p3
- LCLA &freqOffset
- .p3
- AIF C:&docBuffer,.p4
- LCLA &docBuffer
- .p4
- AIF C:&bufferSize,.p5
- LCLA &bufferSize
- .p5
- AIF C:&nextWavePtr,.p6
- LCLA &nextWavePtr
- .p6
- AIF C:&volSetting,.p7
- LCLA &volSetting
- .p7
- &lab DS 0
- &lab._waveStart DC i4'&waveStart'
- &lab._waveSize DC i2'&waveSize'
- &lab._freqOffset DC i2'&freqOffset'
- &lab._docBuffer DC i2'&docBuffer'
- &lab._bufferSize DC i2'&bufferSize'
- &lab._nextWavePtr DC i4'&nextWavePtr'
- &lab._volSetting DC i2'&volSetting'
- MEND
- MACRO
- &lab DocRegParamBlk &oscGenType,&freqLow1,&freqHigh1,&vol1,&tablePtr1,&control1,&tableSize1,&freqLow2,&freqHigh2,&vol2,&tablePtr2,&control2,&tableSize2
- AIF C:&oscGenType,.p1
- LCLA &oscGenType
- .p1
- AIF C:&freqLow1,.p2
- LCLA &freqLow1
- .p2
- AIF C:&freqHigh1,.p3
- LCLA &freqHigh1
- .p3
- AIF C:&vol1,.p4
- LCLA &vol1
- .p4
- AIF C:&tablePtr1,.p5
- LCLA &tablePtr1
- .p5
- AIF C:&control1,.p6
- LCLA &control1
- .p6
- AIF C:&tableSize1,.p7
- LCLA &tableSize1
- .p7
- AIF C:&freqLow2,.p8
- LCLA &freqLow2
- .p8
- AIF C:&freqHigh2,.p9
- LCLA &freqHigh2
- .p9
- AIF C:&vol2,.p10
- LCLA &vol2
- .p10
- AIF C:&tablePtr2,.p11
- LCLA &tablePtr2
- .p11
- AIF C:&control2,.p12
- LCLA &control2
- .p12
- AIF C:&tableSize2,.p13
- LCLA &tableSize2
- .p13
- &lab DS 0
- &lab._oscGenType DC i2'&oscGenType'
- &lab._freqLow1 DC i1'&freqLow1'
- &lab._freqHigh1 DC i1'&freqHigh1'
- &lab._vol1 DC i1'&vol1'
- &lab._tablePtr1 DC i1'&tablePtr1'
- &lab._control1 DC i1'&control1'
- &lab._tableSize1 DC i1'&tableSize1'
- &lab._freqLow2 DC i1'&freqLow2'
- &lab._freqHigh2 DC i1'&freqHigh2'
- &lab._vol2 DC i1'&vol2'
- &lab._tablePtr2 DC i1'&tablePtr2'
- &lab._control2 DC i1'&control2'
- &lab._tableSize2 DC i1'&tableSize2'
- MEND
- MACRO
- &lab SFReplyRec &good,&fileType,&auxFileType,&filename,&fullPathname
- AIF C:&good,.p1
- LCLA &good
- .p1
- AIF C:&fileType,.p2
- LCLA &fileType
- .p2
- AIF C:&auxFileType,.p3
- LCLA &auxFileType
- .p3
- AIF C:&filename,.p4
- LCLA &filename
- .p4
- AIF C:&fullPathname,.p5
- LCLA &fullPathname
- .p5
- &lab DS 0
- &lab._good DC i2'&good'
- &lab._fileType DC i2'&fileType'
- &lab._auxFileType DC i2'&auxFileType'
- &lab._filename DC i1'&filename'
- &lab._fullPathname DC i1'&fullPathname'
- MEND
- MACRO
- &lab SFReplyRec2 &good,&fileType,&auxType,&nameRefDesc,&nameRef,&pathRefDesc,&pathRef
- AIF C:&good,.p1
- LCLA &good
- .p1
- AIF C:&fileType,.p2
- LCLA &fileType
- .p2
- AIF C:&auxType,.p3
- LCLA &auxType
- .p3
- AIF C:&nameRefDesc,.p4
- LCLA &nameRefDesc
- .p4
- AIF C:&nameRef,.p5
- LCLA &nameRef
- .p5
- AIF C:&pathRefDesc,.p6
- LCLA &pathRefDesc
- .p6
- AIF C:&pathRef,.p7
- LCLA &pathRef
- .p7
- &lab DS 0
- &lab._good DC i4'&good'
- &lab._fileType DC i2'&fileType'
- &lab._auxType DC i4'&auxType'
- &lab._nameRefDesc DC i2'&nameRefDesc'
- &lab._nameRef DC i4'&nameRef'
- &lab._pathRefDesc DC i2'&pathRefDesc'
- &lab._pathRef DC i4'&pathRef'
- MEND
- MACRO
- &lab multiReplyRecord &good,&namesHandle
- AIF C:&good,.p1
- LCLA &good
- .p1
- AIF C:&namesHandle,.p2
- LCLA &namesHandle
- .p2
- &lab DS 0
- &lab._good DC i2'&good'
- &lab._namesHandle DC i4'&namesHandle'
- MEND
- MACRO
- &lab SFTypeList &numEntries,&fileTypeEntries
- AIF C:&numEntries,.p1
- LCLA &numEntries
- .p1
- AIF C:&fileTypeEntries,.p2
- LCLA &fileTypeEntries
- .p2
- &lab DS 0
- &lab._numEntries DC i1'&numEntries'
- &lab._fileTypeEntries DC i1'&fileTypeEntries'
- MEND
- MACRO
- &lab TypeSelector2 &flags,&fileType,&auxType
- AIF C:&flags,.p1
- LCLA &flags
- .p1
- AIF C:&fileType,.p2
- LCLA &fileType
- .p2
- AIF C:&auxType,.p3
- LCLA &auxType
- .p3
- &lab DS 0
- &lab._flags DC i2'&flags'
- &lab._fileType DC i2'&fileType'
- &lab._auxType DC i4'&auxType'
- MEND
- MACRO
- &lab SFTypeList2 &numEntries,&fileTypeEntries
- AIF C:&numEntries,.p1
- LCLA &numEntries
- .p1
- AIF C:&fileTypeEntries,.p2
- LCLA &fileTypeEntries
- .p2
- &lab DS 0
- &lab._numEntries DC i2'&numEntries'
- &lab._fileTypeEntries DC i8'&fileTypeEntries'
- MEND
- MACRO
- &lab TETextBlock &nextHandle,&prevHandle,&textLength,&flags,&reserved,&theText
- AIF C:&nextHandle,.p1
- LCLA &nextHandle
- .p1
- AIF C:&prevHandle,.p2
- LCLA &prevHandle
- .p2
- AIF C:&textLength,.p3
- LCLA &textLength
- .p3
- AIF C:&flags,.p4
- LCLA &flags
- .p4
- AIF C:&reserved,.p5
- LCLA &reserved
- .p5
- AIF C:&theText,.p6
- LCLA &theText
- .p6
- &lab DS 0
- &lab._nextHandle DC i4'&nextHandle'
- &lab._prevHandle DC i4'&prevHandle'
- &lab._textLength DC i4'&textLength'
- &lab._flags DC i2'&flags'
- &lab._reserved DC i2'&reserved'
- &lab._theText DC i1'&theText'
- MEND
- MACRO
- &lab TETextList &cachedHandle,&cachedOffset
- AIF C:&cachedHandle,.p1
- LCLA &cachedHandle
- .p1
- AIF C:&cachedOffset,.p2
- LCLA &cachedOffset
- .p2
- &lab DS 0
- &lab._cachedHandle DC i4'&cachedHandle'
- &lab._cachedOffset DC i4'&cachedOffset'
- MEND
- MACRO
- &lab TEColorTable &contentColor,&outlineColor,&hiliteForeColor,&hiliteBackColor,&vertColorDescriptor,&vertColorRef,&horzColorDescriptor,&horzColorRef,&growColorDescriptor,&growColorRef
- AIF C:&contentColor,.p1
- LCLA &contentColor
- .p1
- AIF C:&outlineColor,.p2
- LCLA &outlineColor
- .p2
- AIF C:&hiliteForeColor,.p3
- LCLA &hiliteForeColor
- .p3
- AIF C:&hiliteBackColor,.p4
- LCLA &hiliteBackColor
- .p4
- AIF C:&vertColorDescriptor,.p5
- LCLA &vertColorDescriptor
- .p5
- AIF C:&vertColorRef,.p6
- LCLA &vertColorRef
- .p6
- AIF C:&horzColorDescriptor,.p7
- LCLA &horzColorDescriptor
- .p7
- AIF C:&horzColorRef,.p8
- LCLA &horzColorRef
- .p8
- AIF C:&growColorDescriptor,.p9
- LCLA &growColorDescriptor
- .p9
- AIF C:&growColorRef,.p10
- LCLA &growColorRef
- .p10
- &lab DS 0
- &lab._contentColor DC i2'&contentColor'
- &lab._outlineColor DC i2'&outlineColor'
- &lab._hiliteForeColor DC i2'&hiliteForeColor'
- &lab._hiliteBackColor DC i2'&hiliteBackColor'
- &lab._vertColorDescriptor DC i2'&vertColorDescriptor'
- &lab._vertColorRef DC i4'&vertColorRef'
- &lab._horzColorDescriptor DC i2'&horzColorDescriptor'
- &lab._horzColorRef DC i4'&horzColorRef'
- &lab._growColorDescriptor DC i2'&growColorDescriptor'
- &lab._growColorRef DC i4'&growColorRef'
- MEND
- MACRO
- &lab TEBlockEntry &text,&length,&flags
- AIF C:&text,.p1
- LCLA &text
- .p1
- AIF C:&length,.p2
- LCLA &length
- .p2
- AIF C:&flags,.p3
- LCLA &flags
- .p3
- &lab DS 0
- &lab._text DC i4'&text'
- &lab._length DC i4'&length'
- &lab._flags DC i2'&flags'
- MEND
- MACRO
- &lab TEBlocksRecord &start,&index,&blocks
- AIF C:&start,.p1
- LCLA &start
- .p1
- AIF C:&index,.p2
- LCLA &index
- .p2
- AIF C:&blocks,.p3
- LCLA &blocks
- .p3
- &lab DS 0
- &lab._start DC i4'&start'
- &lab._index DC i2'&index'
- &lab._blocks DC i10'&blocks'
- MEND
- MACRO
- &lab TabItem &tabKind,&tabData
- AIF C:&tabKind,.p1
- LCLA &tabKind
- .p1
- AIF C:&tabData,.p2
- LCLA &tabData
- .p2
- &lab DS 0
- &lab._tabKind DC i2'&tabKind'
- &lab._tabData DC i2'&tabData'
- MEND
- MACRO
- &lab TESuperItem &itemLength,&itemData
- AIF C:&itemLength,.p1
- LCLA &itemLength
- .p1
- AIF C:&itemData,.p2
- LCLA &itemData
- .p2
- &lab DS 0
- &lab._itemLength DC i4'&itemLength'
- &lab._itemData DC i4'&itemData'
- MEND
- MACRO
- &lab TESuperBlock &nextHandle,&prevHandle,&textLength,&reserved,&theItems
- AIF C:&nextHandle,.p1
- LCLA &nextHandle
- .p1
- AIF C:&prevHandle,.p2
- LCLA &prevHandle
- .p2
- AIF C:&textLength,.p3
- LCLA &textLength
- .p3
- AIF C:&reserved,.p4
- LCLA &reserved
- .p4
- AIF C:&theItems,.p5
- LCLA &theItems
- .p5
- &lab DS 0
- &lab._nextHandle DC i4'&nextHandle'
- &lab._prevHandle DC i4'&prevHandle'
- &lab._textLength DC i4'&textLength'
- &lab._reserved DC i4'&reserved'
- &lab._theItems DC i8'&theItems'
- MEND
- MACRO
- &lab TESuperHandle &cachedHandle,&cachedOffset,&cachedIndex,&itemsPerBlock
- AIF C:&cachedHandle,.p1
- LCLA &cachedHandle
- .p1
- AIF C:&cachedOffset,.p2
- LCLA &cachedOffset
- .p2
- AIF C:&cachedIndex,.p3
- LCLA &cachedIndex
- .p3
- AIF C:&itemsPerBlock,.p4
- LCLA &itemsPerBlock
- .p4
- &lab DS 0
- &lab._cachedHandle DC i4'&cachedHandle'
- &lab._cachedOffset DC i4'&cachedOffset'
- &lab._cachedIndex DC i2'&cachedIndex'
- &lab._itemsPerBlock DC i2'&itemsPerBlock'
- MEND
- MACRO
- &lab TERuler &leftMargin,&leftIndent,&rightMargin,&just,&extraLS,&flags,&userData,&tabType,&theTabs,&tabTerminator
- AIF C:&leftMargin,.p1
- LCLA &leftMargin
- .p1
- AIF C:&leftIndent,.p2
- LCLA &leftIndent
- .p2
- AIF C:&rightMargin,.p3
- LCLA &rightMargin
- .p3
- AIF C:&just,.p4
- LCLA &just
- .p4
- AIF C:&extraLS,.p5
- LCLA &extraLS
- .p5
- AIF C:&flags,.p6
- LCLA &flags
- .p6
- AIF C:&userData,.p7
- LCLA &userData
- .p7
- AIF C:&tabType,.p8
- LCLA &tabType
- .p8
- AIF C:&theTabs,.p9
- LCLA &theTabs
- .p9
- AIF C:&tabTerminator,.p10
- LCLA &tabTerminator
- .p10
- &lab DS 0
- &lab._leftMargin DC i2'&leftMargin'
- &lab._leftIndent DC i2'&leftIndent'
- &lab._rightMargin DC i2'&rightMargin'
- &lab._just DC i2'&just'
- &lab._extraLS DC i2'&extraLS'
- &lab._flags DC i2'&flags'
- &lab._userData DC i4'&userData'
- &lab._tabType DC i2'&tabType'
- &lab._theTabs DC i4'&theTabs'
- &lab._tabTerminator DC i2'&tabTerminator'
- MEND
- MACRO
- &lab TEStyle &styleFontID_famNum,&styleFontID_fontStyle,&styleFontID_fontSize,&foreColor,&backColor,&userData
- AIF C:&styleFontID_famNum,.p1
- LCLA &styleFontID_famNum
- .p1
- AIF C:&styleFontID_fontStyle,.p2
- LCLA &styleFontID_fontStyle
- .p2
- AIF C:&styleFontID_fontSize,.p3
- LCLA &styleFontID_fontSize
- .p3
- AIF C:&foreColor,.p4
- LCLA &foreColor
- .p4
- AIF C:&backColor,.p5
- LCLA &backColor
- .p5
- AIF C:&userData,.p6
- LCLA &userData
- .p6
- &lab DS 0
- &lab._styleFontID FontID &styleFontID_famNum,&styleFontID_fontStyle,&styleFontID_fontSize
- &lab._foreColor DC i2'&foreColor'
- &lab._backColor DC i2'&backColor'
- &lab._userData DC i4'&userData'
- MEND
- MACRO
- &lab TEStyleGroup &count,&styles
- AIF C:&count,.p1
- LCLA &count
- .p1
- AIF C:&styles,.p2
- LCLA &styles
- .p2
- &lab DS 0
- &lab._count DC i2'&count'
- &lab._styles DC i12'&styles'
- MEND
- MACRO
- &lab StyleItem &dataLength,&dataOffset
- AIF C:&dataLength,.p1
- LCLA &dataLength
- .p1
- AIF C:&dataOffset,.p2
- LCLA &dataOffset
- .p2
- &lab DS 0
- &lab._dataLength DC i4'&dataLength'
- &lab._dataOffset DC i4'&dataOffset'
- MEND
- MACRO
- &lab TEFormat &version,&rulerListLength,&theRulerList,&styleListLength,&theStyleList,&numberOfStyles,&theStyles
- AIF C:&version,.p1
- LCLA &version
- .p1
- AIF C:&rulerListLength,.p2
- LCLA &rulerListLength
- .p2
- AIF C:&theRulerList,.p3
- LCLA &theRulerList
- .p3
- AIF C:&styleListLength,.p4
- LCLA &styleListLength
- .p4
- AIF C:&theStyleList,.p5
- LCLA &theStyleList
- .p5
- AIF C:&numberOfStyles,.p6
- LCLA &numberOfStyles
- .p6
- AIF C:&theStyles,.p7
- LCLA &theStyles
- .p7
- &lab DS 0
- &lab._version DC i2'&version'
- &lab._rulerListLength DC i4'&rulerListLength'
- &lab._theRulerList DC i22'&theRulerList'
- &lab._styleListLength DC i4'&styleListLength'
- &lab._theStyleList DC i12'&theStyleList'
- &lab._numberOfStyles DC i4'&numberOfStyles'
- &lab._theStyles DC i8'&theStyles'
- MEND
- MACRO
- &lab TETextRef &textRefLong
- AIF C:&textRefLong,.p1
- LCLA &textRefLong
- .p1
- &lab DS 0
- &lab._textRefLong DC i4'&textRefLong'
- MEND
- MACRO
- &lab TEStyleRef &styleRefLong
- AIF C:&styleRefLong,.p1
- LCLA &styleRefLong
- .p1
- &lab DS 0
- &lab._styleRefLong DC i4'&styleRefLong'
- MEND
- MACRO
- &lab TEParamBlock &pCount,&controlID,&boundsRect_v1,&boundsRect_h1,&boundsRect_v2,&boundsRect_h2,&procRef,&flags,&moreflags,&refCon,&textFlags,&indentRect_v1,&indentRect_h1,&indentRect_v2,&indentRect_h2,&vertBar,&vertAmount,&horzBar,&horzAmount,&styleRef_styleRefLong,&textDescriptor,&textRef_textRefLong,&textLength,&maxChars,&maxLines,&maxCharsPerLine,&maxHeight,&colorRef,&drawMode,&filterProcPtr
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&controlID,.p2
- LCLA &controlID
- .p2
- AIF C:&boundsRect_v1,.p3
- LCLA &boundsRect_v1
- .p3
- AIF C:&boundsRect_h1,.p4
- LCLA &boundsRect_h1
- .p4
- AIF C:&boundsRect_v2,.p5
- LCLA &boundsRect_v2
- .p5
- AIF C:&boundsRect_h2,.p6
- LCLA &boundsRect_h2
- .p6
- AIF C:&procRef,.p7
- LCLA &procRef
- .p7
- AIF C:&flags,.p8
- LCLA &flags
- .p8
- AIF C:&moreflags,.p9
- LCLA &moreflags
- .p9
- AIF C:&refCon,.p10
- LCLA &refCon
- .p10
- AIF C:&textFlags,.p11
- LCLA &textFlags
- .p11
- AIF C:&indentRect_v1,.p12
- LCLA &indentRect_v1
- .p12
- AIF C:&indentRect_h1,.p13
- LCLA &indentRect_h1
- .p13
- AIF C:&indentRect_v2,.p14
- LCLA &indentRect_v2
- .p14
- AIF C:&indentRect_h2,.p15
- LCLA &indentRect_h2
- .p15
- AIF C:&vertBar,.p16
- LCLA &vertBar
- .p16
- AIF C:&vertAmount,.p17
- LCLA &vertAmount
- .p17
- AIF C:&horzBar,.p18
- LCLA &horzBar
- .p18
- AIF C:&horzAmount,.p19
- LCLA &horzAmount
- .p19
- AIF C:&styleRef_styleRefLong,.p20
- LCLA &styleRef_styleRefLong
- .p20
- AIF C:&textDescriptor,.p21
- LCLA &textDescriptor
- .p21
- AIF C:&textRef_textRefLong,.p22
- LCLA &textRef_textRefLong
- .p22
- AIF C:&textLength,.p23
- LCLA &textLength
- .p23
- AIF C:&maxChars,.p24
- LCLA &maxChars
- .p24
- AIF C:&maxLines,.p25
- LCLA &maxLines
- .p25
- AIF C:&maxCharsPerLine,.p26
- LCLA &maxCharsPerLine
- .p26
- AIF C:&maxHeight,.p27
- LCLA &maxHeight
- .p27
- AIF C:&colorRef,.p28
- LCLA &colorRef
- .p28
- AIF C:&drawMode,.p29
- LCLA &drawMode
- .p29
- AIF C:&filterProcPtr,.p30
- LCLA &filterProcPtr
- .p30
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._controlID DC i4'&controlID'
- &lab._boundsRect Rect &boundsRect_v1,&boundsRect_h1,&boundsRect_v2,&boundsRect_h2
- &lab._procRef DC i4'&procRef'
- &lab._flags DC i2'&flags'
- &lab._moreflags DC i2'&moreflags'
- &lab._refCon DC i4'&refCon'
- &lab._textFlags DC i4'&textFlags'
- &lab._indentRect Rect &indentRect_v1,&indentRect_h1,&indentRect_v2,&indentRect_h2
- &lab._vertBar DC i4'&vertBar'
- &lab._vertAmount DC i2'&vertAmount'
- &lab._horzBar DC i4'&horzBar'
- &lab._horzAmount DC i2'&horzAmount'
- &lab._styleRef TEStyleRef &styleRef_styleRefLong
- &lab._textDescriptor DC i2'&textDescriptor'
- &lab._textRef TETextRef &textRef_textRefLong
- &lab._textLength DC i4'&textLength'
- &lab._maxChars DC i4'&maxChars'
- &lab._maxLines DC i4'&maxLines'
- &lab._maxCharsPerLine DC i2'&maxCharsPerLine'
- &lab._maxHeight DC i2'&maxHeight'
- &lab._colorRef DC i4'&colorRef'
- &lab._drawMode DC i2'&drawMode'
- &lab._filterProcPtr DC i4'&filterProcPtr'
- MEND
- MACRO
- &lab TEInfoRec &charCount,&lineCount,&formatMemory,&totalMemory,&styleCount,&rulerCount
- AIF C:&charCount,.p1
- LCLA &charCount
- .p1
- AIF C:&lineCount,.p2
- LCLA &lineCount
- .p2
- AIF C:&formatMemory,.p3
- LCLA &formatMemory
- .p3
- AIF C:&totalMemory,.p4
- LCLA &totalMemory
- .p4
- AIF C:&styleCount,.p5
- LCLA &styleCount
- .p5
- AIF C:&rulerCount,.p6
- LCLA &rulerCount
- .p6
- &lab DS 0
- &lab._charCount DC i4'&charCount'
- &lab._lineCount DC i4'&lineCount'
- &lab._formatMemory DC i4'&formatMemory'
- &lab._totalMemory DC i4'&totalMemory'
- &lab._styleCount DC i4'&styleCount'
- &lab._rulerCount DC i4'&rulerCount'
- MEND
- MACRO
- &lab TEHooks &charFilter,&wordWrap,&wordBreak,&drawText,&eraseText
- AIF C:&charFilter,.p1
- LCLA &charFilter
- .p1
- AIF C:&wordWrap,.p2
- LCLA &wordWrap
- .p2
- AIF C:&wordBreak,.p3
- LCLA &wordBreak
- .p3
- AIF C:&drawText,.p4
- LCLA &drawText
- .p4
- AIF C:&eraseText,.p5
- LCLA &eraseText
- .p5
- &lab DS 0
- &lab._charFilter DC i4'&charFilter'
- &lab._wordWrap DC i4'&wordWrap'
- &lab._wordBreak DC i4'&wordBreak'
- &lab._drawText DC i4'&drawText'
- &lab._eraseText DC i4'&eraseText'
- MEND
- MACRO
- &lab TEKeyRecord &theChar,&theModifiers,&theInputHandle,&cursorOffset,&theOpCode
- AIF C:&theChar,.p1
- LCLA &theChar
- .p1
- AIF C:&theModifiers,.p2
- LCLA &theModifiers
- .p2
- AIF C:&theInputHandle,.p3
- LCLA &theInputHandle
- .p3
- AIF C:&cursorOffset,.p4
- LCLA &cursorOffset
- .p4
- AIF C:&theOpCode,.p5
- LCLA &theOpCode
- .p5
- &lab DS 0
- &lab._theChar DC i2'&theChar'
- &lab._theModifiers DC i2'&theModifiers'
- &lab._theInputHandle DC i4'&theInputHandle'
- &lab._cursorOffset DC i4'&cursorOffset'
- &lab._theOpCode DC i2'&theOpCode'
- MEND
- MACRO
- &lab TERecord &ctrlNext,&inPort,&boundsRect_v1,&boundsRect_h1,&boundsRect_v2,&boundsRect_h2,&ctrlFlag,&ctrlHilite,&lastErrorCode,&ctrlProc,&ctrlAction,&filterProc,&ctrlRefCon,&colorRef,&textFlags,&textLength,&blockList_cachedHandle,&blockList_cachedOffset,&ctrlID,&ctrlMoreFlags,&ctrlVersion,&viewRect_v1,&viewRect_h1,&viewRect_v2,&viewRect_h2,&totalHeight,&lineSuper_cachedHandle,&lineSuper_cachedOffset,&lineSuper_cachedIndex,&lineSuper_itemsPerBlock,&styleSuper_cachedHandle,&styleSuper_cachedOffset,&styleSuper_cachedIndex,&styleSuper_itemsPerBlock,&styleList,&rulerList,&lineAtEndFlag,&selectionStart,&selectionEnd,&selectionActive,&selectionState,&caretTime,&nullStyleActive,&nullStyle_styleFontID_famNum,&nullStyle_styleFontID_fontStyle,&nullStyle_styleFontID_fontSize,&nullStyle_foreColor,&nullStyle_backColor,&nullStyle_userData,&topTextOffset,&topTextVPos,&vertScrollBar,&vertScrollPos,&vertScrollMax,&vertScrollAmount,&horzScrollBar,&horzScrollPos,&horzScrollMax,&horzScrollAmount,&growBoxHandle,&maximumChars,&maximumLines,&maxCharsPerLine,&maximumHeight,&textDrawMode,&wordBreakHook,&wordWrapHook,&keyFilter,&theFilterRect_v1,&theFilterRect_h1,&theFilterRect_v2,&theFilterRect_h2,&theBufferVPos,&theBufferHPos,&theKeyRecord_theChar,&theKeyRecord_theModifiers,&theKeyRecord_theInputHandle,&theKeyRecord_cursorOffset,&theKeyRecord_theOpCode,&cachedSelcOffset,&cachedSelcVPos,&cachedSelcHPos,&mouseRect_v1,&mouseRect_h1,&mouseRect_v2,&mouseRect_h2,&mouseTime,&mouseKind,&lastClick_v,&lastClick_h,&savedHPos,&anchorPoint
- AIF C:&ctrlNext,.p1
- LCLA &ctrlNext
- .p1
- AIF C:&inPort,.p2
- LCLA &inPort
- .p2
- AIF C:&boundsRect_v1,.p3
- LCLA &boundsRect_v1
- .p3
- AIF C:&boundsRect_h1,.p4
- LCLA &boundsRect_h1
- .p4
- AIF C:&boundsRect_v2,.p5
- LCLA &boundsRect_v2
- .p5
- AIF C:&boundsRect_h2,.p6
- LCLA &boundsRect_h2
- .p6
- AIF C:&ctrlFlag,.p7
- LCLA &ctrlFlag
- .p7
- AIF C:&ctrlHilite,.p8
- LCLA &ctrlHilite
- .p8
- AIF C:&lastErrorCode,.p9
- LCLA &lastErrorCode
- .p9
- AIF C:&ctrlProc,.p10
- LCLA &ctrlProc
- .p10
- AIF C:&ctrlAction,.p11
- LCLA &ctrlAction
- .p11
- AIF C:&filterProc,.p12
- LCLA &filterProc
- .p12
- AIF C:&ctrlRefCon,.p13
- LCLA &ctrlRefCon
- .p13
- AIF C:&colorRef,.p14
- LCLA &colorRef
- .p14
- AIF C:&textFlags,.p15
- LCLA &textFlags
- .p15
- AIF C:&textLength,.p16
- LCLA &textLength
- .p16
- AIF C:&blockList_cachedHandle,.p17
- LCLA &blockList_cachedHandle
- .p17
- AIF C:&blockList_cachedOffset,.p18
- LCLA &blockList_cachedOffset
- .p18
- AIF C:&ctrlID,.p19
- LCLA &ctrlID
- .p19
- AIF C:&ctrlMoreFlags,.p20
- LCLA &ctrlMoreFlags
- .p20
- AIF C:&ctrlVersion,.p21
- LCLA &ctrlVersion
- .p21
- AIF C:&viewRect_v1,.p22
- LCLA &viewRect_v1
- .p22
- AIF C:&viewRect_h1,.p23
- LCLA &viewRect_h1
- .p23
- AIF C:&viewRect_v2,.p24
- LCLA &viewRect_v2
- .p24
- AIF C:&viewRect_h2,.p25
- LCLA &viewRect_h2
- .p25
- AIF C:&totalHeight,.p26
- LCLA &totalHeight
- .p26
- AIF C:&lineSuper_cachedHandle,.p27
- LCLA &lineSuper_cachedHandle
- .p27
- AIF C:&lineSuper_cachedOffset,.p28
- LCLA &lineSuper_cachedOffset
- .p28
- AIF C:&lineSuper_cachedIndex,.p29
- LCLA &lineSuper_cachedIndex
- .p29
- AIF C:&lineSuper_itemsPerBlock,.p30
- LCLA &lineSuper_itemsPerBlock
- .p30
- AIF C:&styleSuper_cachedHandle,.p31
- LCLA &styleSuper_cachedHandle
- .p31
- AIF C:&styleSuper_cachedOffset,.p32
- LCLA &styleSuper_cachedOffset
- .p32
- AIF C:&styleSuper_cachedIndex,.p33
- LCLA &styleSuper_cachedIndex
- .p33
- AIF C:&styleSuper_itemsPerBlock,.p34
- LCLA &styleSuper_itemsPerBlock
- .p34
- AIF C:&styleList,.p35
- LCLA &styleList
- .p35
- AIF C:&rulerList,.p36
- LCLA &rulerList
- .p36
- AIF C:&lineAtEndFlag,.p37
- LCLA &lineAtEndFlag
- .p37
- AIF C:&selectionStart,.p38
- LCLA &selectionStart
- .p38
- AIF C:&selectionEnd,.p39
- LCLA &selectionEnd
- .p39
- AIF C:&selectionActive,.p40
- LCLA &selectionActive
- .p40
- AIF C:&selectionState,.p41
- LCLA &selectionState
- .p41
- AIF C:&caretTime,.p42
- LCLA &caretTime
- .p42
- AIF C:&nullStyleActive,.p43
- LCLA &nullStyleActive
- .p43
- AIF C:&nullStyle_styleFontID_famNum,.p44
- LCLA &nullStyle_styleFontID_famNum
- .p44
- AIF C:&nullStyle_styleFontID_fontStyle,.p45
- LCLA &nullStyle_styleFontID_fontStyle
- .p45
- AIF C:&nullStyle_styleFontID_fontSize,.p46
- LCLA &nullStyle_styleFontID_fontSize
- .p46
- AIF C:&nullStyle_foreColor,.p47
- LCLA &nullStyle_foreColor
- .p47
- AIF C:&nullStyle_backColor,.p48
- LCLA &nullStyle_backColor
- .p48
- AIF C:&nullStyle_userData,.p49
- LCLA &nullStyle_userData
- .p49
- AIF C:&topTextOffset,.p50
- LCLA &topTextOffset
- .p50
- AIF C:&topTextVPos,.p51
- LCLA &topTextVPos
- .p51
- AIF C:&vertScrollBar,.p52
- LCLA &vertScrollBar
- .p52
- AIF C:&vertScrollPos,.p53
- LCLA &vertScrollPos
- .p53
- AIF C:&vertScrollMax,.p54
- LCLA &vertScrollMax
- .p54
- AIF C:&vertScrollAmount,.p55
- LCLA &vertScrollAmount
- .p55
- AIF C:&horzScrollBar,.p56
- LCLA &horzScrollBar
- .p56
- AIF C:&horzScrollPos,.p57
- LCLA &horzScrollPos
- .p57
- AIF C:&horzScrollMax,.p58
- LCLA &horzScrollMax
- .p58
- AIF C:&horzScrollAmount,.p59
- LCLA &horzScrollAmount
- .p59
- AIF C:&growBoxHandle,.p60
- LCLA &growBoxHandle
- .p60
- AIF C:&maximumChars,.p61
- LCLA &maximumChars
- .p61
- AIF C:&maximumLines,.p62
- LCLA &maximumLines
- .p62
- AIF C:&maxCharsPerLine,.p63
- LCLA &maxCharsPerLine
- .p63
- AIF C:&maximumHeight,.p64
- LCLA &maximumHeight
- .p64
- AIF C:&textDrawMode,.p65
- LCLA &textDrawMode
- .p65
- AIF C:&wordBreakHook,.p66
- LCLA &wordBreakHook
- .p66
- AIF C:&wordWrapHook,.p67
- LCLA &wordWrapHook
- .p67
- AIF C:&keyFilter,.p68
- LCLA &keyFilter
- .p68
- AIF C:&theFilterRect_v1,.p69
- LCLA &theFilterRect_v1
- .p69
- AIF C:&theFilterRect_h1,.p70
- LCLA &theFilterRect_h1
- .p70
- AIF C:&theFilterRect_v2,.p71
- LCLA &theFilterRect_v2
- .p71
- AIF C:&theFilterRect_h2,.p72
- LCLA &theFilterRect_h2
- .p72
- AIF C:&theBufferVPos,.p73
- LCLA &theBufferVPos
- .p73
- AIF C:&theBufferHPos,.p74
- LCLA &theBufferHPos
- .p74
- AIF C:&theKeyRecord_theChar,.p75
- LCLA &theKeyRecord_theChar
- .p75
- AIF C:&theKeyRecord_theModifiers,.p76
- LCLA &theKeyRecord_theModifiers
- .p76
- AIF C:&theKeyRecord_theInputHandle,.p77
- LCLA &theKeyRecord_theInputHandle
- .p77
- AIF C:&theKeyRecord_cursorOffset,.p78
- LCLA &theKeyRecord_cursorOffset
- .p78
- AIF C:&theKeyRecord_theOpCode,.p79
- LCLA &theKeyRecord_theOpCode
- .p79
- AIF C:&cachedSelcOffset,.p80
- LCLA &cachedSelcOffset
- .p80
- AIF C:&cachedSelcVPos,.p81
- LCLA &cachedSelcVPos
- .p81
- AIF C:&cachedSelcHPos,.p82
- LCLA &cachedSelcHPos
- .p82
- AIF C:&mouseRect_v1,.p83
- LCLA &mouseRect_v1
- .p83
- AIF C:&mouseRect_h1,.p84
- LCLA &mouseRect_h1
- .p84
- AIF C:&mouseRect_v2,.p85
- LCLA &mouseRect_v2
- .p85
- AIF C:&mouseRect_h2,.p86
- LCLA &mouseRect_h2
- .p86
- AIF C:&mouseTime,.p87
- LCLA &mouseTime
- .p87
- AIF C:&mouseKind,.p88
- LCLA &mouseKind
- .p88
- AIF C:&lastClick_v,.p89
- LCLA &lastClick_v
- .p89
- AIF C:&lastClick_h,.p90
- LCLA &lastClick_h
- .p90
- AIF C:&savedHPos,.p91
- LCLA &savedHPos
- .p91
- AIF C:&anchorPoint,.p92
- LCLA &anchorPoint
- .p92
- &lab DS 0
- &lab._ctrlNext DC i4'&ctrlNext'
- &lab._inPort DC i4'&inPort'
- &lab._boundsRect Rect &boundsRect_v1,&boundsRect_h1,&boundsRect_v2,&boundsRect_h2
- &lab._ctrlFlag DC i1'&ctrlFlag'
- &lab._ctrlHilite DC i1'&ctrlHilite'
- &lab._lastErrorCode DC i2'&lastErrorCode'
- &lab._ctrlProc DC i4'&ctrlProc'
- &lab._ctrlAction DC i4'&ctrlAction'
- &lab._filterProc DC i4'&filterProc'
- &lab._ctrlRefCon DC i4'&ctrlRefCon'
- &lab._colorRef DC i4'&colorRef'
- &lab._textFlags DC i4'&textFlags'
- &lab._textLength DC i4'&textLength'
- &lab._blockList TETextList &blockList_cachedHandle,&blockList_cachedOffset
- &lab._ctrlID DC i4'&ctrlID'
- &lab._ctrlMoreFlags DC i2'&ctrlMoreFlags'
- &lab._ctrlVersion DC i2'&ctrlVersion'
- &lab._viewRect Rect &viewRect_v1,&viewRect_h1,&viewRect_v2,&viewRect_h2
- &lab._totalHeight DC i4'&totalHeight'
- &lab._lineSuper TESuperHandle &lineSuper_cachedHandle,&lineSuper_cachedOffset,&lineSuper_cachedIndex,&lineSuper_itemsPerBlock
- &lab._styleSuper TESuperHandle &styleSuper_cachedHandle,&styleSuper_cachedOffset,&styleSuper_cachedIndex,&styleSuper_itemsPerBlock
- &lab._styleList DC i4'&styleList'
- &lab._rulerList DC i4'&rulerList'
- &lab._lineAtEndFlag DC i4'&lineAtEndFlag'
- &lab._selectionStart DC i4'&selectionStart'
- &lab._selectionEnd DC i4'&selectionEnd'
- &lab._selectionActive DC i2'&selectionActive'
- &lab._selectionState DC i2'&selectionState'
- &lab._caretTime DC i4'&caretTime'
- &lab._nullStyleActive DC i4'&nullStyleActive'
- &lab._nullStyle TEStyle &nullStyle_styleFontID_famNum,&nullStyle_styleFontID_fontStyle,&nullStyle_styleFontID_fontSize,&nullStyle_foreColor,&nullStyle_backColor,&nullStyle_userData
- &lab._topTextOffset DC i4'&topTextOffset'
- &lab._topTextVPos DC i2'&topTextVPos'
- &lab._vertScrollBar DC i4'&vertScrollBar'
- &lab._vertScrollPos DC i4'&vertScrollPos'
- &lab._vertScrollMax DC i4'&vertScrollMax'
- &lab._vertScrollAmount DC i2'&vertScrollAmount'
- &lab._horzScrollBar DC i4'&horzScrollBar'
- &lab._horzScrollPos DC i4'&horzScrollPos'
- &lab._horzScrollMax DC i4'&horzScrollMax'
- &lab._horzScrollAmount DC i2'&horzScrollAmount'
- &lab._growBoxHandle DC i4'&growBoxHandle'
- &lab._maximumChars DC i4'&maximumChars'
- &lab._maximumLines DC i4'&maximumLines'
- &lab._maxCharsPerLine DC i2'&maxCharsPerLine'
- &lab._maximumHeight DC i2'&maximumHeight'
- &lab._textDrawMode DC i2'&textDrawMode'
- &lab._wordBreakHook DC i4'&wordBreakHook'
- &lab._wordWrapHook DC i4'&wordWrapHook'
- &lab._keyFilter DC i4'&keyFilter'
- &lab._theFilterRect Rect &theFilterRect_v1,&theFilterRect_h1,&theFilterRect_v2,&theFilterRect_h2
- &lab._theBufferVPos DC i2'&theBufferVPos'
- &lab._theBufferHPos DC i2'&theBufferHPos'
- &lab._theKeyRecord TEKeyRecord &theKeyRecord_theChar,&theKeyRecord_theModifiers,&theKeyRecord_theInputHandle,&theKeyRecord_cursorOffset,&theKeyRecord_theOpCode
- &lab._cachedSelcOffset DC i4'&cachedSelcOffset'
- &lab._cachedSelcVPos DC i2'&cachedSelcVPos'
- &lab._cachedSelcHPos DC i2'&cachedSelcHPos'
- &lab._mouseRect Rect &mouseRect_v1,&mouseRect_h1,&mouseRect_v2,&mouseRect_h2
- &lab._mouseTime DC i4'&mouseTime'
- &lab._mouseKind DC i2'&mouseKind'
- &lab._lastClick Point &lastClick_v,&lastClick_h
- &lab._savedHPos DC i2'&savedHPos'
- &lab._anchorPoint DC i4'&anchorPoint'
- MEND
- MACRO
- &lab DeviceRec &ptrOrSlot,&deviceType
- AIF C:&ptrOrSlot,.p1
- LCLA &ptrOrSlot
- .p1
- AIF C:&deviceType,.p2
- LCLA &deviceType
- .p2
- &lab DS 0
- &lab._ptrOrSlot DC i4'&ptrOrSlot'
- &lab._deviceType DC i2'&deviceType'
- MEND
- MACRO
- &lab TxtMaskRec &orMask,&andMask
- AIF C:&orMask,.p1
- LCLA &orMask
- .p1
- AIF C:&andMask,.p2
- LCLA &andMask
- .p2
- &lab DS 0
- &lab._orMask DC i2'&orMask'
- &lab._andMask DC i2'&andMask'
- MEND
- MACRO
- &lab EntName &buffer
- AIF C:&buffer,.p1
- LCLA &buffer
- .p1
- &lab DS 0
- &lab._buffer DC i1'&buffer'
- MEND
- MACRO
- &lab ATInitTailRec &pathVolID,&pathDirID,&path,&prefixVolID,&prefixDirID,&prefix,&userName,&printerFlags,&printerTuple
- AIF C:&pathVolID,.p1
- LCLA &pathVolID
- .p1
- AIF C:&pathDirID,.p2
- LCLA &pathDirID
- .p2
- AIF C:&path,.p3
- LCLA &path
- .p3
- AIF C:&prefixVolID,.p4
- LCLA &prefixVolID
- .p4
- AIF C:&prefixDirID,.p5
- LCLA &prefixDirID
- .p5
- AIF C:&prefix,.p6
- LCLA &prefix
- .p6
- AIF C:&userName,.p7
- LCLA &userName
- .p7
- AIF C:&printerFlags,.p8
- LCLA &printerFlags
- .p8
- AIF C:&printerTuple,.p9
- LCLA &printerTuple
- .p9
- &lab DS 0
- &lab._pathVolID DC i2'&pathVolID'
- &lab._pathDirID DC i4'&pathDirID'
- &lab._path DC i1'&path'
- &lab._prefixVolID DC i2'&prefixVolID'
- &lab._prefixDirID DC i4'&prefixDirID'
- &lab._prefix DC i1'&prefix'
- &lab._userName DC i1'&userName'
- &lab._printerFlags DC i1'&printerFlags'
- &lab._printerTuple DC i1'&printerTuple'
- MEND
- MACRO
- &lab ATGetInfoRec &async,&command,&result,&completionRtnReturn,&thisNet,&aBridge,&hardwareID,&romVersion,&nodeNumber
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&completionRtnReturn,.p4
- LCLA &completionRtnReturn
- .p4
- AIF C:&thisNet,.p5
- LCLA &thisNet
- .p5
- AIF C:&aBridge,.p6
- LCLA &aBridge
- .p6
- AIF C:&hardwareID,.p7
- LCLA &hardwareID
- .p7
- AIF C:&romVersion,.p8
- LCLA &romVersion
- .p8
- AIF C:&nodeNumber,.p9
- LCLA &nodeNumber
- .p9
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._completionRtnReturn DC i4'&completionRtnReturn'
- &lab._thisNet DC i2'&thisNet'
- &lab._aBridge DC i1'&aBridge'
- &lab._hardwareID DC i1'&hardwareID'
- &lab._romVersion DC i2'&romVersion'
- &lab._nodeNumber DC i1'&nodeNumber'
- MEND
- MACRO
- &lab ATGetGlobalRec &async,&command,&result,&bufferPtr
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&bufferPtr,.p4
- LCLA &bufferPtr
- .p4
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._bufferPtr DC i4'&bufferPtr'
- MEND
- MACRO
- &lab ATGetGlobalBuffer &lapDestinationNode,&lapSourceNode,&lapType,&hopCountDL,&datagramLength,&ddpChecksum,&destinationNetwork,&sourceNetwork,&destinationNode,&sourceNode,&destinationSocket,&sourceSocket,&ddpType,&packetLength
- AIF C:&lapDestinationNode,.p1
- LCLA &lapDestinationNode
- .p1
- AIF C:&lapSourceNode,.p2
- LCLA &lapSourceNode
- .p2
- AIF C:&lapType,.p3
- LCLA &lapType
- .p3
- AIF C:&hopCountDL,.p4
- LCLA &hopCountDL
- .p4
- AIF C:&datagramLength,.p5
- LCLA &datagramLength
- .p5
- AIF C:&ddpChecksum,.p6
- LCLA &ddpChecksum
- .p6
- AIF C:&destinationNetwork,.p7
- LCLA &destinationNetwork
- .p7
- AIF C:&sourceNetwork,.p8
- LCLA &sourceNetwork
- .p8
- AIF C:&destinationNode,.p9
- LCLA &destinationNode
- .p9
- AIF C:&sourceNode,.p10
- LCLA &sourceNode
- .p10
- AIF C:&destinationSocket,.p11
- LCLA &destinationSocket
- .p11
- AIF C:&sourceSocket,.p12
- LCLA &sourceSocket
- .p12
- AIF C:&ddpType,.p13
- LCLA &ddpType
- .p13
- AIF C:&packetLength,.p14
- LCLA &packetLength
- .p14
- &lab DS 0
- &lab._lapDestinationNode DC i1'&lapDestinationNode'
- &lab._lapSourceNode DC i1'&lapSourceNode'
- &lab._lapType DC i1'&lapType'
- &lab._hopCountDL DC i1'&hopCountDL'
- &lab._datagramLength DC i1'&datagramLength'
- &lab._ddpChecksum DC i2'&ddpChecksum'
- &lab._destinationNetwork DC i2'&destinationNetwork'
- &lab._sourceNetwork DC i2'&sourceNetwork'
- &lab._destinationNode DC i1'&destinationNode'
- &lab._sourceNode DC i1'&sourceNode'
- &lab._destinationSocket DC i1'&destinationSocket'
- &lab._sourceSocket DC i1'&sourceSocket'
- &lab._ddpType DC i1'&ddpType'
- &lab._packetLength DC i2'&packetLength'
- MEND
- MACRO
- &lab ATInstallTimerRec &async,&command,&result,&completionRtnReturn,&runningTickCount,&ticksToComplete,&reserved
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&completionRtnReturn,.p4
- LCLA &completionRtnReturn
- .p4
- AIF C:&runningTickCount,.p5
- LCLA &runningTickCount
- .p5
- AIF C:&ticksToComplete,.p6
- LCLA &ticksToComplete
- .p6
- AIF C:&reserved,.p7
- LCLA &reserved
- .p7
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._completionRtnReturn DC i4'&completionRtnReturn'
- &lab._runningTickCount DC i2'&runningTickCount'
- &lab._ticksToComplete DC i2'&ticksToComplete'
- &lab._reserved DC i4'&reserved'
- MEND
- MACRO
- &lab ATRemoveTimerRec &async,&command,&result,&reserved
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&reserved,.p4
- LCLA &reserved
- .p4
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._reserved DC i1'&reserved'
- MEND
- MACRO
- &lab ATBootRec &async,&command,&result
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- MEND
- MACRO
- &lab ATCancelTimerRec &async,&command,&result,&reserved
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&reserved,.p4
- LCLA &reserved
- .p4
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._reserved DC i1'&reserved'
- MEND
- MACRO
- &lab ASPAttentionHeaderRec &sessionRefNum,&attenType,&atten
- AIF C:&sessionRefNum,.p1
- LCLA &sessionRefNum
- .p1
- AIF C:&attenType,.p2
- LCLA &attenType
- .p2
- AIF C:&atten,.p3
- LCLA &atten
- .p3
- &lab DS 0
- &lab._sessionRefNum DC i1'&sessionRefNum'
- &lab._attenType DC i1'&attenType'
- &lab._atten DC i2'&atten'
- MEND
- MACRO
- &lab ASPGetParmsRec &async,&command,&result,&maxCmdSize,&maxDataSize
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&maxCmdSize,.p4
- LCLA &maxCmdSize
- .p4
- AIF C:&maxDataSize,.p5
- LCLA &maxDataSize
- .p5
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._maxCmdSize DC i2'&maxCmdSize'
- &lab._maxDataSize DC i2'&maxDataSize'
- MEND
- MACRO
- &lab ASPGetStatusRec &async,&command,&result,&completionPtr,&slsNet,&slsNode,&slsSocket,&bufferLength,&bufferAddr,&dataLength
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&completionPtr,.p4
- LCLA &completionPtr
- .p4
- AIF C:&slsNet,.p5
- LCLA &slsNet
- .p5
- AIF C:&slsNode,.p6
- LCLA &slsNode
- .p6
- AIF C:&slsSocket,.p7
- LCLA &slsSocket
- .p7
- AIF C:&bufferLength,.p8
- LCLA &bufferLength
- .p8
- AIF C:&bufferAddr,.p9
- LCLA &bufferAddr
- .p9
- AIF C:&dataLength,.p10
- LCLA &dataLength
- .p10
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._completionPtr DC i4'&completionPtr'
- &lab._slsNet DC i2'&slsNet'
- &lab._slsNode DC i1'&slsNode'
- &lab._slsSocket DC i1'&slsSocket'
- &lab._bufferLength DC i2'&bufferLength'
- &lab._bufferAddr DC i4'&bufferAddr'
- &lab._dataLength DC i2'&dataLength'
- MEND
- MACRO
- &lab ASPOpenSessionRec &async,&command,&result,&completionPtr,&slsNet,&slsNode,&slsSocket,&attnRtnAddr,&refNum
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&completionPtr,.p4
- LCLA &completionPtr
- .p4
- AIF C:&slsNet,.p5
- LCLA &slsNet
- .p5
- AIF C:&slsNode,.p6
- LCLA &slsNode
- .p6
- AIF C:&slsSocket,.p7
- LCLA &slsSocket
- .p7
- AIF C:&attnRtnAddr,.p8
- LCLA &attnRtnAddr
- .p8
- AIF C:&refNum,.p9
- LCLA &refNum
- .p9
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._completionPtr DC i4'&completionPtr'
- &lab._slsNet DC i2'&slsNet'
- &lab._slsNode DC i1'&slsNode'
- &lab._slsSocket DC i1'&slsSocket'
- &lab._attnRtnAddr DC i4'&attnRtnAddr'
- &lab._refNum DC i1'&refNum'
- MEND
- MACRO
- &lab ASPCloseSessionRec &async,&command,&result,&completionPtr,&refNum
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&completionPtr,.p4
- LCLA &completionPtr
- .p4
- AIF C:&refNum,.p5
- LCLA &refNum
- .p5
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._completionPtr DC i4'&completionPtr'
- &lab._refNum DC i1'&refNum'
- MEND
- MACRO
- &lab ASPCommandRec &async,&command,&result,&completionPtr,&refNum,&cmdBlkLength,&cmdBlkAddr,&replyBufferLength,&replyBufferAddr,&cmdResult,&replyLength
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&completionPtr,.p4
- LCLA &completionPtr
- .p4
- AIF C:&refNum,.p5
- LCLA &refNum
- .p5
- AIF C:&cmdBlkLength,.p6
- LCLA &cmdBlkLength
- .p6
- AIF C:&cmdBlkAddr,.p7
- LCLA &cmdBlkAddr
- .p7
- AIF C:&replyBufferLength,.p8
- LCLA &replyBufferLength
- .p8
- AIF C:&replyBufferAddr,.p9
- LCLA &replyBufferAddr
- .p9
- AIF C:&cmdResult,.p10
- LCLA &cmdResult
- .p10
- AIF C:&replyLength,.p11
- LCLA &replyLength
- .p11
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._completionPtr DC i4'&completionPtr'
- &lab._refNum DC i1'&refNum'
- &lab._cmdBlkLength DC i2'&cmdBlkLength'
- &lab._cmdBlkAddr DC i4'&cmdBlkAddr'
- &lab._replyBufferLength DC i2'&replyBufferLength'
- &lab._replyBufferAddr DC i4'&replyBufferAddr'
- &lab._cmdResult DC i4'&cmdResult'
- &lab._replyLength DC i2'&replyLength'
- MEND
- MACRO
- &lab ASPWriteRec &async,&command,&result,&completionPtr,&refNum,&cmdBlkLength,&cmdBlkAddr,&writeDataLength,&writeDataAddr,&replyBufferLength,&replyBufferAddr,&cmdResult,&writtenLength,&replyLength
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&completionPtr,.p4
- LCLA &completionPtr
- .p4
- AIF C:&refNum,.p5
- LCLA &refNum
- .p5
- AIF C:&cmdBlkLength,.p6
- LCLA &cmdBlkLength
- .p6
- AIF C:&cmdBlkAddr,.p7
- LCLA &cmdBlkAddr
- .p7
- AIF C:&writeDataLength,.p8
- LCLA &writeDataLength
- .p8
- AIF C:&writeDataAddr,.p9
- LCLA &writeDataAddr
- .p9
- AIF C:&replyBufferLength,.p10
- LCLA &replyBufferLength
- .p10
- AIF C:&replyBufferAddr,.p11
- LCLA &replyBufferAddr
- .p11
- AIF C:&cmdResult,.p12
- LCLA &cmdResult
- .p12
- AIF C:&writtenLength,.p13
- LCLA &writtenLength
- .p13
- AIF C:&replyLength,.p14
- LCLA &replyLength
- .p14
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._completionPtr DC i4'&completionPtr'
- &lab._refNum DC i1'&refNum'
- &lab._cmdBlkLength DC i2'&cmdBlkLength'
- &lab._cmdBlkAddr DC i4'&cmdBlkAddr'
- &lab._writeDataLength DC i2'&writeDataLength'
- &lab._writeDataAddr DC i4'&writeDataAddr'
- &lab._replyBufferLength DC i2'&replyBufferLength'
- &lab._replyBufferAddr DC i4'&replyBufferAddr'
- &lab._cmdResult DC i4'&cmdResult'
- &lab._writtenLength DC i2'&writtenLength'
- &lab._replyLength DC i2'&replyLength'
- MEND
- MACRO
- &lab Server &serverName,&net,&node,&socket
- AIF C:&serverName,.p1
- LCLA &serverName
- .p1
- AIF C:&net,.p2
- LCLA &net
- .p2
- AIF C:&node,.p3
- LCLA &node
- .p3
- AIF C:&socket,.p4
- LCLA &socket
- .p4
- &lab DS 0
- &lab._serverName DC i4'&serverName'
- &lab._net DC i2'&net'
- &lab._node DC i1'&node'
- &lab._socket DC i1'&socket'
- MEND
- MACRO
- &lab ATPSendReqRec &async,&command,&result,&completionPtr,&socketID,&destNetID,&destNodeID,&destSocketID,&transactionID,&reqBufferLength,&reqBufferPtr,&userBytes,&numberRespBuffers,&respBufferPtr,&atpFlags,&rInterval,&rCount,&bitMap,&responseRcv,&reserved
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&completionPtr,.p4
- LCLA &completionPtr
- .p4
- AIF C:&socketID,.p5
- LCLA &socketID
- .p5
- AIF C:&destNetID,.p6
- LCLA &destNetID
- .p6
- AIF C:&destNodeID,.p7
- LCLA &destNodeID
- .p7
- AIF C:&destSocketID,.p8
- LCLA &destSocketID
- .p8
- AIF C:&transactionID,.p9
- LCLA &transactionID
- .p9
- AIF C:&reqBufferLength,.p10
- LCLA &reqBufferLength
- .p10
- AIF C:&reqBufferPtr,.p11
- LCLA &reqBufferPtr
- .p11
- AIF C:&userBytes,.p12
- LCLA &userBytes
- .p12
- AIF C:&numberRespBuffers,.p13
- LCLA &numberRespBuffers
- .p13
- AIF C:&respBufferPtr,.p14
- LCLA &respBufferPtr
- .p14
- AIF C:&atpFlags,.p15
- LCLA &atpFlags
- .p15
- AIF C:&rInterval,.p16
- LCLA &rInterval
- .p16
- AIF C:&rCount,.p17
- LCLA &rCount
- .p17
- AIF C:&bitMap,.p18
- LCLA &bitMap
- .p18
- AIF C:&responseRcv,.p19
- LCLA &responseRcv
- .p19
- AIF C:&reserved,.p20
- LCLA &reserved
- .p20
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._completionPtr DC i4'&completionPtr'
- &lab._socketID DC i1'&socketID'
- &lab._destNetID DC i2'&destNetID'
- &lab._destNodeID DC i1'&destNodeID'
- &lab._destSocketID DC i1'&destSocketID'
- &lab._transactionID DC i2'&transactionID'
- &lab._reqBufferLength DC i2'&reqBufferLength'
- &lab._reqBufferPtr DC i4'&reqBufferPtr'
- &lab._userBytes DC i4'&userBytes'
- &lab._numberRespBuffers DC i1'&numberRespBuffers'
- &lab._respBufferPtr DC i4'&respBufferPtr'
- &lab._atpFlags DC i1'&atpFlags'
- &lab._rInterval DC i1'&rInterval'
- &lab._rCount DC i1'&rCount'
- &lab._bitMap DC i1'&bitMap'
- &lab._responseRcv DC i1'&responseRcv'
- &lab._reserved DC i1'&reserved'
- MEND
- MACRO
- &lab ATPCancelReqRec &async,&command,&result,&transactionID
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&transactionID,.p4
- LCLA &transactionID
- .p4
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._transactionID DC i2'&transactionID'
- MEND
- MACRO
- &lab ATPOpenSocketRec &async,&command,&result,&socketID
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&socketID,.p4
- LCLA &socketID
- .p4
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._socketID DC i1'&socketID'
- MEND
- MACRO
- &lab ATPCloseSocketRec &async,&command,&result,&socketID
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&socketID,.p4
- LCLA &socketID
- .p4
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._socketID DC i1'&socketID'
- MEND
- MACRO
- &lab ATPGetReqRec &async,&command,&result,&completionPtr,&respSocketID,&networkID,&nodeID,&socketID,&transactionID,&reqBufferLength,&reqBufferPtr,&userBytes,&requestLength,&atpFlags,&bitMap,&reserved
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&completionPtr,.p4
- LCLA &completionPtr
- .p4
- AIF C:&respSocketID,.p5
- LCLA &respSocketID
- .p5
- AIF C:&networkID,.p6
- LCLA &networkID
- .p6
- AIF C:&nodeID,.p7
- LCLA &nodeID
- .p7
- AIF C:&socketID,.p8
- LCLA &socketID
- .p8
- AIF C:&transactionID,.p9
- LCLA &transactionID
- .p9
- AIF C:&reqBufferLength,.p10
- LCLA &reqBufferLength
- .p10
- AIF C:&reqBufferPtr,.p11
- LCLA &reqBufferPtr
- .p11
- AIF C:&userBytes,.p12
- LCLA &userBytes
- .p12
- AIF C:&requestLength,.p13
- LCLA &requestLength
- .p13
- AIF C:&atpFlags,.p14
- LCLA &atpFlags
- .p14
- AIF C:&bitMap,.p15
- LCLA &bitMap
- .p15
- AIF C:&reserved,.p16
- LCLA &reserved
- .p16
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._completionPtr DC i4'&completionPtr'
- &lab._respSocketID DC i1'&respSocketID'
- &lab._networkID DC i2'&networkID'
- &lab._nodeID DC i1'&nodeID'
- &lab._socketID DC i1'&socketID'
- &lab._transactionID DC i2'&transactionID'
- &lab._reqBufferLength DC i2'&reqBufferLength'
- &lab._reqBufferPtr DC i4'&reqBufferPtr'
- &lab._userBytes DC i4'&userBytes'
- &lab._requestLength DC i2'&requestLength'
- &lab._atpFlags DC i1'&atpFlags'
- &lab._bitMap DC i1'&bitMap'
- &lab._reserved DC i4'&reserved'
- MEND
- MACRO
- &lab ATPSendRespRec &async,&command,&result,&completionPtr,&socketID,&destNetID,&destNodeID,&destSocketID,&transactionID,&numRespBuffers,&totalPackets,&respBDSPtr,&atpFlags,&bitmap,&addRoutinePtr,&stsFlag
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&completionPtr,.p4
- LCLA &completionPtr
- .p4
- AIF C:&socketID,.p5
- LCLA &socketID
- .p5
- AIF C:&destNetID,.p6
- LCLA &destNetID
- .p6
- AIF C:&destNodeID,.p7
- LCLA &destNodeID
- .p7
- AIF C:&destSocketID,.p8
- LCLA &destSocketID
- .p8
- AIF C:&transactionID,.p9
- LCLA &transactionID
- .p9
- AIF C:&numRespBuffers,.p10
- LCLA &numRespBuffers
- .p10
- AIF C:&totalPackets,.p11
- LCLA &totalPackets
- .p11
- AIF C:&respBDSPtr,.p12
- LCLA &respBDSPtr
- .p12
- AIF C:&atpFlags,.p13
- LCLA &atpFlags
- .p13
- AIF C:&bitmap,.p14
- LCLA &bitmap
- .p14
- AIF C:&addRoutinePtr,.p15
- LCLA &addRoutinePtr
- .p15
- AIF C:&stsFlag,.p16
- LCLA &stsFlag
- .p16
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._completionPtr DC i4'&completionPtr'
- &lab._socketID DC i1'&socketID'
- &lab._destNetID DC i2'&destNetID'
- &lab._destNodeID DC i1'&destNodeID'
- &lab._destSocketID DC i1'&destSocketID'
- &lab._transactionID DC i2'&transactionID'
- &lab._numRespBuffers DC i1'&numRespBuffers'
- &lab._totalPackets DC i1'&totalPackets'
- &lab._respBDSPtr DC i4'&respBDSPtr'
- &lab._atpFlags DC i1'&atpFlags'
- &lab._bitmap DC i1'&bitmap'
- &lab._addRoutinePtr DC i4'&addRoutinePtr'
- &lab._stsFlag DC i1'&stsFlag'
- MEND
- MACRO
- &lab ATPAddRespRec &async,&command,&result,&socketID,&destNetID,&destNodeID,&destSocketID,&transactionID,&respBufferLength,&respBufferPtr,&userBytes,&atpFlags
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&socketID,.p4
- LCLA &socketID
- .p4
- AIF C:&destNetID,.p5
- LCLA &destNetID
- .p5
- AIF C:&destNodeID,.p6
- LCLA &destNodeID
- .p6
- AIF C:&destSocketID,.p7
- LCLA &destSocketID
- .p7
- AIF C:&transactionID,.p8
- LCLA &transactionID
- .p8
- AIF C:&respBufferLength,.p9
- LCLA &respBufferLength
- .p9
- AIF C:&respBufferPtr,.p10
- LCLA &respBufferPtr
- .p10
- AIF C:&userBytes,.p11
- LCLA &userBytes
- .p11
- AIF C:&atpFlags,.p12
- LCLA &atpFlags
- .p12
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._socketID DC i1'&socketID'
- &lab._destNetID DC i2'&destNetID'
- &lab._destNodeID DC i1'&destNodeID'
- &lab._destSocketID DC i1'&destSocketID'
- &lab._transactionID DC i2'&transactionID'
- &lab._respBufferLength DC i2'&respBufferLength'
- &lab._respBufferPtr DC i4'&respBufferPtr'
- &lab._userBytes DC i4'&userBytes'
- &lab._atpFlags DC i1'&atpFlags'
- MEND
- MACRO
- &lab ATPRelCBRec &async,&command,&result,&socketID,&destNetID,&destNodeID,&destSocketID,&transactionID
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&socketID,.p4
- LCLA &socketID
- .p4
- AIF C:&destNetID,.p5
- LCLA &destNetID
- .p5
- AIF C:&destNodeID,.p6
- LCLA &destNodeID
- .p6
- AIF C:&destSocketID,.p7
- LCLA &destSocketID
- .p7
- AIF C:&transactionID,.p8
- LCLA &transactionID
- .p8
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._socketID DC i1'&socketID'
- &lab._destNetID DC i2'&destNetID'
- &lab._destNodeID DC i1'&destNodeID'
- &lab._destSocketID DC i1'&destSocketID'
- &lab._transactionID DC i2'&transactionID'
- MEND
- MACRO
- &lab RespBDSBuffer &bufferLength,&bufferPtr,&userBytes,&actualLength
- AIF C:&bufferLength,.p1
- LCLA &bufferLength
- .p1
- AIF C:&bufferPtr,.p2
- LCLA &bufferPtr
- .p2
- AIF C:&userBytes,.p3
- LCLA &userBytes
- .p3
- AIF C:&actualLength,.p4
- LCLA &actualLength
- .p4
- &lab DS 0
- &lab._bufferLength DC i2'&bufferLength'
- &lab._bufferPtr DC i4'&bufferPtr'
- &lab._userBytes DC i4'&userBytes'
- &lab._actualLength DC i2'&actualLength'
- MEND
- MACRO
- &lab DDPOpenSocketRec &async,&command,&result,&socketNumber,&clientAddr
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&socketNumber,.p4
- LCLA &socketNumber
- .p4
- AIF C:&clientAddr,.p5
- LCLA &clientAddr
- .p5
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._socketNumber DC i1'&socketNumber'
- &lab._clientAddr DC i4'&clientAddr'
- MEND
- MACRO
- &lab DDPCloseSocketRec &async,&command,&result,&socketNumber
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&socketNumber,.p4
- LCLA &socketNumber
- .p4
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._socketNumber DC i1'&socketNumber'
- MEND
- MACRO
- &lab DDPSendDatagramRec &async,&command,&result,&checksum,&destNet,&destNode,&destSocket,&sourceSocket,&ddpType,&bdsPtr
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&checksum,.p4
- LCLA &checksum
- .p4
- AIF C:&destNet,.p5
- LCLA &destNet
- .p5
- AIF C:&destNode,.p6
- LCLA &destNode
- .p6
- AIF C:&destSocket,.p7
- LCLA &destSocket
- .p7
- AIF C:&sourceSocket,.p8
- LCLA &sourceSocket
- .p8
- AIF C:&ddpType,.p9
- LCLA &ddpType
- .p9
- AIF C:&bdsPtr,.p10
- LCLA &bdsPtr
- .p10
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._checksum DC i1'&checksum'
- &lab._destNet DC i2'&destNet'
- &lab._destNode DC i1'&destNode'
- &lab._destSocket DC i1'&destSocket'
- &lab._sourceSocket DC i1'&sourceSocket'
- &lab._ddpType DC i1'&ddpType'
- &lab._bdsPtr DC i4'&bdsPtr'
- MEND
- MACRO
- &lab LAPWriteRec &async,&command,&result,&destNode,&lapType,&lapBDSPtr
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&destNode,.p4
- LCLA &destNode
- .p4
- AIF C:&lapType,.p5
- LCLA &lapType
- .p5
- AIF C:&lapBDSPtr,.p6
- LCLA &lapBDSPtr
- .p6
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._destNode DC i1'&destNode'
- &lab._lapType DC i1'&lapType'
- &lab._lapBDSPtr DC i4'&lapBDSPtr'
- MEND
- MACRO
- &lab LAPReadBufferRec &async,&command,&result,&requestCount,&bufferPtr,&purge,&amountTransfered
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&requestCount,.p4
- LCLA &requestCount
- .p4
- AIF C:&bufferPtr,.p5
- LCLA &bufferPtr
- .p5
- AIF C:&purge,.p6
- LCLA &purge
- .p6
- AIF C:&amountTransfered,.p7
- LCLA &amountTransfered
- .p7
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._requestCount DC i2'&requestCount'
- &lab._bufferPtr DC i4'&bufferPtr'
- &lab._purge DC i1'&purge'
- &lab._amountTransfered DC i2'&amountTransfered'
- MEND
- MACRO
- &lab LAPAttachProtRec &async,&command,&result,&protType,&protAddr
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&protType,.p4
- LCLA &protType
- .p4
- AIF C:&protAddr,.p5
- LCLA &protAddr
- .p5
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._protType DC i1'&protType'
- &lab._protAddr DC i4'&protAddr'
- MEND
- MACRO
- &lab LAPRemoveProtRec &async,&command,&result,&protType
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&protType,.p4
- LCLA &protType
- .p4
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._protType DC i1'&protType'
- MEND
- MACRO
- &lab BDS &BufferLength,&BufferPtr
- AIF C:&BufferLength,.p1
- LCLA &BufferLength
- .p1
- AIF C:&BufferPtr,.p2
- LCLA &BufferPtr
- .p2
- &lab DS 0
- &lab._BufferLength DC i2'&BufferLength'
- &lab._BufferPtr DC i4'&BufferPtr'
- MEND
- MACRO
- &lab NBPRNEntityNameRec &reserved,&entityName_buffer
- AIF C:&reserved,.p1
- LCLA &reserved
- .p1
- AIF C:&entityName_buffer,.p2
- LCLA &entityName_buffer
- .p2
- &lab DS 0
- &lab._reserved DC i1'&reserved'
- &lab._entityName EntName &entityName_buffer
- MEND
- MACRO
- &lab NBPLUNameBufferRec &netNum,&nodeNum,&socketNum,&enumerator,&entityName_buffer
- AIF C:&netNum,.p1
- LCLA &netNum
- .p1
- AIF C:&nodeNum,.p2
- LCLA &nodeNum
- .p2
- AIF C:&socketNum,.p3
- LCLA &socketNum
- .p3
- AIF C:&enumerator,.p4
- LCLA &enumerator
- .p4
- AIF C:&entityName_buffer,.p5
- LCLA &entityName_buffer
- .p5
- &lab DS 0
- &lab._netNum DC i2'&netNum'
- &lab._nodeNum DC i1'&nodeNum'
- &lab._socketNum DC i1'&socketNum'
- &lab._enumerator DC i1'&enumerator'
- &lab._entityName EntName &entityName_buffer
- MEND
- MACRO
- &lab NBPRegisterNameRec &async,&command,&result,&completionPtr,&namePtr,&rInterval,&rCount,&reserved,&socketNumber,&checkFlag
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&completionPtr,.p4
- LCLA &completionPtr
- .p4
- AIF C:&namePtr,.p5
- LCLA &namePtr
- .p5
- AIF C:&rInterval,.p6
- LCLA &rInterval
- .p6
- AIF C:&rCount,.p7
- LCLA &rCount
- .p7
- AIF C:&reserved,.p8
- LCLA &reserved
- .p8
- AIF C:&socketNumber,.p9
- LCLA &socketNumber
- .p9
- AIF C:&checkFlag,.p10
- LCLA &checkFlag
- .p10
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._completionPtr DC i4'&completionPtr'
- &lab._namePtr DC i4'&namePtr'
- &lab._rInterval DC i1'&rInterval'
- &lab._rCount DC i1'&rCount'
- &lab._reserved DC i2'&reserved'
- &lab._socketNumber DC i1'&socketNumber'
- &lab._checkFlag DC i1'&checkFlag'
- MEND
- MACRO
- &lab NBPRemoveNameRec &async,&command,&result,&entityPtr
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&entityPtr,.p4
- LCLA &entityPtr
- .p4
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._entityPtr DC i4'&entityPtr'
- MEND
- MACRO
- &lab NBPLookupNameRec &async,&command,&result,&completionPtr,&entityPtr,&rInterval,&rCount,&reserved,&bufferLength,&bufferPtr,&maxMatch,&actualMatch
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&completionPtr,.p4
- LCLA &completionPtr
- .p4
- AIF C:&entityPtr,.p5
- LCLA &entityPtr
- .p5
- AIF C:&rInterval,.p6
- LCLA &rInterval
- .p6
- AIF C:&rCount,.p7
- LCLA &rCount
- .p7
- AIF C:&reserved,.p8
- LCLA &reserved
- .p8
- AIF C:&bufferLength,.p9
- LCLA &bufferLength
- .p9
- AIF C:&bufferPtr,.p10
- LCLA &bufferPtr
- .p10
- AIF C:&maxMatch,.p11
- LCLA &maxMatch
- .p11
- AIF C:&actualMatch,.p12
- LCLA &actualMatch
- .p12
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._completionPtr DC i4'&completionPtr'
- &lab._entityPtr DC i4'&entityPtr'
- &lab._rInterval DC i1'&rInterval'
- &lab._rCount DC i1'&rCount'
- &lab._reserved DC i2'&reserved'
- &lab._bufferLength DC i2'&bufferLength'
- &lab._bufferPtr DC i4'&bufferPtr'
- &lab._maxMatch DC i1'&maxMatch'
- &lab._actualMatch DC i1'&actualMatch'
- MEND
- MACRO
- &lab NBPConfirmNameRec &async,&command,&result,&completionPtr,&entityPtr,&rInterval,&rCount,&reserved,&networkID,&nodeID,&socketID,&actualSocketID
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&completionPtr,.p4
- LCLA &completionPtr
- .p4
- AIF C:&entityPtr,.p5
- LCLA &entityPtr
- .p5
- AIF C:&rInterval,.p6
- LCLA &rInterval
- .p6
- AIF C:&rCount,.p7
- LCLA &rCount
- .p7
- AIF C:&reserved,.p8
- LCLA &reserved
- .p8
- AIF C:&networkID,.p9
- LCLA &networkID
- .p9
- AIF C:&nodeID,.p10
- LCLA &nodeID
- .p10
- AIF C:&socketID,.p11
- LCLA &socketID
- .p11
- AIF C:&actualSocketID,.p12
- LCLA &actualSocketID
- .p12
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._completionPtr DC i4'&completionPtr'
- &lab._entityPtr DC i4'&entityPtr'
- &lab._rInterval DC i1'&rInterval'
- &lab._rCount DC i1'&rCount'
- &lab._reserved DC i2'&reserved'
- &lab._networkID DC i2'&networkID'
- &lab._nodeID DC i1'&nodeID'
- &lab._socketID DC i1'&socketID'
- &lab._actualSocketID DC i1'&actualSocketID'
- MEND
- MACRO
- &lab NBPKillRec &async,&command,&result,¶mBlockPtr
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:¶mBlockPtr,.p4
- LCLA ¶mBlockPtr
- .p4
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._paramBlockPtr DC i4'¶mBlockPtr'
- MEND
- MACRO
- &lab PAPStatusRec &async,&command,&result,&completionPtr,&printerNamePtr,&statusBufferPtr
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&completionPtr,.p4
- LCLA &completionPtr
- .p4
- AIF C:&printerNamePtr,.p5
- LCLA &printerNamePtr
- .p5
- AIF C:&statusBufferPtr,.p6
- LCLA &statusBufferPtr
- .p6
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._completionPtr DC i4'&completionPtr'
- &lab._printerNamePtr DC i4'&printerNamePtr'
- &lab._statusBufferPtr DC i4'&statusBufferPtr'
- MEND
- MACRO
- &lab PAPOpenRec &async,&command,&result,&completionPtr,&sessRefID,&printerNamePtr,&flowQuantum,&statusBufferPtr
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&completionPtr,.p4
- LCLA &completionPtr
- .p4
- AIF C:&sessRefID,.p5
- LCLA &sessRefID
- .p5
- AIF C:&printerNamePtr,.p6
- LCLA &printerNamePtr
- .p6
- AIF C:&flowQuantum,.p7
- LCLA &flowQuantum
- .p7
- AIF C:&statusBufferPtr,.p8
- LCLA &statusBufferPtr
- .p8
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._completionPtr DC i4'&completionPtr'
- &lab._sessRefID DC i1'&sessRefID'
- &lab._printerNamePtr DC i4'&printerNamePtr'
- &lab._flowQuantum DC i1'&flowQuantum'
- &lab._statusBufferPtr DC i4'&statusBufferPtr'
- MEND
- MACRO
- &lab PAPCloseRec &async,&command,&result,&completionPtr,&sessRefID
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&completionPtr,.p4
- LCLA &completionPtr
- .p4
- AIF C:&sessRefID,.p5
- LCLA &sessRefID
- .p5
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._completionPtr DC i4'&completionPtr'
- &lab._sessRefID DC i1'&sessRefID'
- MEND
- MACRO
- &lab PAPReadRec &async,&command,&result,&completionPtr,&sessRefID,&bufferLength,&bufferPtr,&papEOF
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&completionPtr,.p4
- LCLA &completionPtr
- .p4
- AIF C:&sessRefID,.p5
- LCLA &sessRefID
- .p5
- AIF C:&bufferLength,.p6
- LCLA &bufferLength
- .p6
- AIF C:&bufferPtr,.p7
- LCLA &bufferPtr
- .p7
- AIF C:&papEOF,.p8
- LCLA &papEOF
- .p8
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._completionPtr DC i4'&completionPtr'
- &lab._sessRefID DC i1'&sessRefID'
- &lab._bufferLength DC i2'&bufferLength'
- &lab._bufferPtr DC i4'&bufferPtr'
- &lab._papEOF DC i1'&papEOF'
- MEND
- MACRO
- &lab PAPWriteRec &async,&command,&result,&completionPtr,&sessRefID,&dataLength,&bufferPtr,&papEOF
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&completionPtr,.p4
- LCLA &completionPtr
- .p4
- AIF C:&sessRefID,.p5
- LCLA &sessRefID
- .p5
- AIF C:&dataLength,.p6
- LCLA &dataLength
- .p6
- AIF C:&bufferPtr,.p7
- LCLA &bufferPtr
- .p7
- AIF C:&papEOF,.p8
- LCLA &papEOF
- .p8
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._completionPtr DC i4'&completionPtr'
- &lab._sessRefID DC i1'&sessRefID'
- &lab._dataLength DC i2'&dataLength'
- &lab._bufferPtr DC i4'&bufferPtr'
- &lab._papEOF DC i1'&papEOF'
- MEND
- MACRO
- &lab PAPUnloadRec &async,&command,&result,&completionPtr
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&completionPtr,.p4
- LCLA &completionPtr
- .p4
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._completionPtr DC i4'&completionPtr'
- MEND
- MACRO
- &lab PFIAttentionHeaderRec &sessionRefNum,&attenType,&atten,&serverName,&zoneName
- AIF C:&sessionRefNum,.p1
- LCLA &sessionRefNum
- .p1
- AIF C:&attenType,.p2
- LCLA &attenType
- .p2
- AIF C:&atten,.p3
- LCLA &atten
- .p3
- AIF C:&serverName,.p4
- LCLA &serverName
- .p4
- AIF C:&zoneName,.p5
- LCLA &zoneName
- .p5
- &lab DS 0
- &lab._sessionRefNum DC i1'&sessionRefNum'
- &lab._attenType DC i1'&attenType'
- &lab._atten DC i2'&atten'
- &lab._serverName DC i1'&serverName'
- &lab._zoneName DC i1'&zoneName'
- MEND
- MACRO
- &lab PFIHooksMountingRec &sessionRefNum,&p8UnitNum,&volumeName,&volumeID,&serverName,&zoneName
- AIF C:&sessionRefNum,.p1
- LCLA &sessionRefNum
- .p1
- AIF C:&p8UnitNum,.p2
- LCLA &p8UnitNum
- .p2
- AIF C:&volumeName,.p3
- LCLA &volumeName
- .p3
- AIF C:&volumeID,.p4
- LCLA &volumeID
- .p4
- AIF C:&serverName,.p5
- LCLA &serverName
- .p5
- AIF C:&zoneName,.p6
- LCLA &zoneName
- .p6
- &lab DS 0
- &lab._sessionRefNum DC i1'&sessionRefNum'
- &lab._p8UnitNum DC i1'&p8UnitNum'
- &lab._volumeName DC i1'&volumeName'
- &lab._volumeID DC i2'&volumeID'
- &lab._serverName DC i1'&serverName'
- &lab._zoneName DC i1'&zoneName'
- MEND
- MACRO
- &lab PFIUserPrefixRec &async,&command,&result,&directionFlag,&userNamePtr
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&directionFlag,.p4
- LCLA &directionFlag
- .p4
- AIF C:&userNamePtr,.p5
- LCLA &userNamePtr
- .p5
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._directionFlag DC i1'&directionFlag'
- &lab._userNamePtr DC i2'&userNamePtr'
- MEND
- MACRO
- &lab PFILoginRec &async,&command,&result,&networkID,&nodeID,&socketID,&cmdBufferLength,&cmdBufferPtr,&replyBufferLength,&replyBufferPtr,&sessRefID,&attnRtnAddr
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&networkID,.p4
- LCLA &networkID
- .p4
- AIF C:&nodeID,.p5
- LCLA &nodeID
- .p5
- AIF C:&socketID,.p6
- LCLA &socketID
- .p6
- AIF C:&cmdBufferLength,.p7
- LCLA &cmdBufferLength
- .p7
- AIF C:&cmdBufferPtr,.p8
- LCLA &cmdBufferPtr
- .p8
- AIF C:&replyBufferLength,.p9
- LCLA &replyBufferLength
- .p9
- AIF C:&replyBufferPtr,.p10
- LCLA &replyBufferPtr
- .p10
- AIF C:&sessRefID,.p11
- LCLA &sessRefID
- .p11
- AIF C:&attnRtnAddr,.p12
- LCLA &attnRtnAddr
- .p12
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._networkID DC i2'&networkID'
- &lab._nodeID DC i1'&nodeID'
- &lab._socketID DC i1'&socketID'
- &lab._cmdBufferLength DC i2'&cmdBufferLength'
- &lab._cmdBufferPtr DC i4'&cmdBufferPtr'
- &lab._replyBufferLength DC i2'&replyBufferLength'
- &lab._replyBufferPtr DC i4'&replyBufferPtr'
- &lab._sessRefID DC i1'&sessRefID'
- &lab._attnRtnAddr DC i4'&attnRtnAddr'
- MEND
- MACRO
- &lab PFILoginContRec &async,&command,&result,&sessRefID,&cmdBufferLength,&cmdBufferPtr,&replyBufferLength,&replyBufferPtr
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&sessRefID,.p4
- LCLA &sessRefID
- .p4
- AIF C:&cmdBufferLength,.p5
- LCLA &cmdBufferLength
- .p5
- AIF C:&cmdBufferPtr,.p6
- LCLA &cmdBufferPtr
- .p6
- AIF C:&replyBufferLength,.p7
- LCLA &replyBufferLength
- .p7
- AIF C:&replyBufferPtr,.p8
- LCLA &replyBufferPtr
- .p8
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._sessRefID DC i1'&sessRefID'
- &lab._cmdBufferLength DC i2'&cmdBufferLength'
- &lab._cmdBufferPtr DC i4'&cmdBufferPtr'
- &lab._replyBufferLength DC i2'&replyBufferLength'
- &lab._replyBufferPtr DC i4'&replyBufferPtr'
- MEND
- MACRO
- &lab PFILogoutRec &async,&command,&result,&sessRefID
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&sessRefID,.p4
- LCLA &sessRefID
- .p4
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._sessRefID DC i1'&sessRefID'
- MEND
- MACRO
- &lab PFIMountvolRec &async,&command,&result,&sessRefID,&mountflag,&volNamePtr,&volID,&slotDrive,&passwordPtr
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&sessRefID,.p4
- LCLA &sessRefID
- .p4
- AIF C:&mountflag,.p5
- LCLA &mountflag
- .p5
- AIF C:&volNamePtr,.p6
- LCLA &volNamePtr
- .p6
- AIF C:&volID,.p7
- LCLA &volID
- .p7
- AIF C:&slotDrive,.p8
- LCLA &slotDrive
- .p8
- AIF C:&passwordPtr,.p9
- LCLA &passwordPtr
- .p9
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._sessRefID DC i1'&sessRefID'
- &lab._mountflag DC i1'&mountflag'
- &lab._volNamePtr DC i4'&volNamePtr'
- &lab._volID DC i2'&volID'
- &lab._slotDrive DC i1'&slotDrive'
- &lab._passwordPtr DC i4'&passwordPtr'
- MEND
- MACRO
- &lab PFIListBufferRec &sessionRefNum,&Slot,&volumeName,&volumeID
- AIF C:&sessionRefNum,.p1
- LCLA &sessionRefNum
- .p1
- AIF C:&Slot,.p2
- LCLA &Slot
- .p2
- AIF C:&volumeName,.p3
- LCLA &volumeName
- .p3
- AIF C:&volumeID,.p4
- LCLA &volumeID
- .p4
- &lab DS 0
- &lab._sessionRefNum DC i1'&sessionRefNum'
- &lab._Slot DC i1'&Slot'
- &lab._volumeName DC i1'&volumeName'
- &lab._volumeID DC i2'&volumeID'
- MEND
- MACRO
- &lab PFIListSessionsRec &async,&command,&result,&bufferLength,&bufferPtr,&entriesRtn
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&bufferLength,.p4
- LCLA &bufferLength
- .p4
- AIF C:&bufferPtr,.p5
- LCLA &bufferPtr
- .p5
- AIF C:&entriesRtn,.p6
- LCLA &entriesRtn
- .p6
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._bufferLength DC i2'&bufferLength'
- &lab._bufferPtr DC i4'&bufferPtr'
- &lab._entriesRtn DC i1'&entriesRtn'
- MEND
- MACRO
- &lab PFITimeZoneRec &async,&command,&result,&timeFlag
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&timeFlag,.p4
- LCLA &timeFlag
- .p4
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._timeFlag DC i1'&timeFlag'
- MEND
- MACRO
- &lab PFIGetSrcpathRec &async,&command,&result,&bufferPtr
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&bufferPtr,.p4
- LCLA &bufferPtr
- .p4
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._bufferPtr DC i4'&bufferPtr'
- MEND
- MACRO
- &lab PFIAccessRec &async,&command,&result,&directionalFlag,&accessRights,&pathnamePtr,&creatorNamePtr,&groupNamePtr
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&directionalFlag,.p4
- LCLA &directionalFlag
- .p4
- AIF C:&accessRights,.p5
- LCLA &accessRights
- .p5
- AIF C:&pathnamePtr,.p6
- LCLA &pathnamePtr
- .p6
- AIF C:&creatorNamePtr,.p7
- LCLA &creatorNamePtr
- .p7
- AIF C:&groupNamePtr,.p8
- LCLA &groupNamePtr
- .p8
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._directionalFlag DC i1'&directionalFlag'
- &lab._accessRights DC i4'&accessRights'
- &lab._pathnamePtr DC i4'&pathnamePtr'
- &lab._creatorNamePtr DC i4'&creatorNamePtr'
- &lab._groupNamePtr DC i4'&groupNamePtr'
- MEND
- MACRO
- &lab PFINamingRec &async,&command,&result,&directionalFlag,&namingConvFlag
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&directionalFlag,.p4
- LCLA &directionalFlag
- .p4
- AIF C:&namingConvFlag,.p5
- LCLA &namingConvFlag
- .p5
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._directionalFlag DC i1'&directionalFlag'
- &lab._namingConvFlag DC i1'&namingConvFlag'
- MEND
- MACRO
- &lab PFIConvertTimeRec &async,&command,&result,&formatFlag,&fromDateTime,&toDateTime
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&formatFlag,.p4
- LCLA &formatFlag
- .p4
- AIF C:&fromDateTime,.p5
- LCLA &fromDateTime
- .p5
- AIF C:&toDateTime,.p6
- LCLA &toDateTime
- .p6
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._formatFlag DC i1'&formatFlag'
- &lab._fromDateTime DC i4'&fromDateTime'
- &lab._toDateTime DC i4'&toDateTime'
- MEND
- MACRO
- &lab PFISetBufferRec &async,&command,&result,&dirFlag,&bufferLength,&bufferPtr
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&dirFlag,.p4
- LCLA &dirFlag
- .p4
- AIF C:&bufferLength,.p5
- LCLA &bufferLength
- .p5
- AIF C:&bufferPtr,.p6
- LCLA &bufferPtr
- .p6
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._dirFlag DC i1'&dirFlag'
- &lab._bufferLength DC i2'&bufferLength'
- &lab._bufferPtr DC i4'&bufferPtr'
- MEND
- MACRO
- &lab PFIHooksRec &async,&command,&result,&hookFlag,&mountVector,&unmountVector,&attentionVector
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&hookFlag,.p4
- LCLA &hookFlag
- .p4
- AIF C:&mountVector,.p5
- LCLA &mountVector
- .p5
- AIF C:&unmountVector,.p6
- LCLA &unmountVector
- .p6
- AIF C:&attentionVector,.p7
- LCLA &attentionVector
- .p7
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._hookFlag DC i1'&hookFlag'
- &lab._mountVector DC i4'&mountVector'
- &lab._unmountVector DC i4'&unmountVector'
- &lab._attentionVector DC i4'&attentionVector'
- MEND
- MACRO
- &lab PFILogin2Rec &async,&command,&result,&newworkID,&nodeID,&socketID,&cmdBufferLength,&cmdBufferPtr,&replyBufferLength,&replyBufferPtr,&sessRefID,&attnRtnAddr,&serverName,&zoneName,&afpVersionNum
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&newworkID,.p4
- LCLA &newworkID
- .p4
- AIF C:&nodeID,.p5
- LCLA &nodeID
- .p5
- AIF C:&socketID,.p6
- LCLA &socketID
- .p6
- AIF C:&cmdBufferLength,.p7
- LCLA &cmdBufferLength
- .p7
- AIF C:&cmdBufferPtr,.p8
- LCLA &cmdBufferPtr
- .p8
- AIF C:&replyBufferLength,.p9
- LCLA &replyBufferLength
- .p9
- AIF C:&replyBufferPtr,.p10
- LCLA &replyBufferPtr
- .p10
- AIF C:&sessRefID,.p11
- LCLA &sessRefID
- .p11
- AIF C:&attnRtnAddr,.p12
- LCLA &attnRtnAddr
- .p12
- AIF C:&serverName,.p13
- LCLA &serverName
- .p13
- AIF C:&zoneName,.p14
- LCLA &zoneName
- .p14
- AIF C:&afpVersionNum,.p15
- LCLA &afpVersionNum
- .p15
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._newworkID DC i2'&newworkID'
- &lab._nodeID DC i1'&nodeID'
- &lab._socketID DC i1'&socketID'
- &lab._cmdBufferLength DC i2'&cmdBufferLength'
- &lab._cmdBufferPtr DC i4'&cmdBufferPtr'
- &lab._replyBufferLength DC i2'&replyBufferLength'
- &lab._replyBufferPtr DC i4'&replyBufferPtr'
- &lab._sessRefID DC i1'&sessRefID'
- &lab._attnRtnAddr DC i4'&attnRtnAddr'
- &lab._serverName DC i4'&serverName'
- &lab._zoneName DC i4'&zoneName'
- &lab._afpVersionNum DC i2'&afpVersionNum'
- MEND
- MACRO
- &lab PFIListSessions2Rec &async,&command,&result,&bufferLength,&bufferPtr,&entriesRtn
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&bufferLength,.p4
- LCLA &bufferLength
- .p4
- AIF C:&bufferPtr,.p5
- LCLA &bufferPtr
- .p5
- AIF C:&entriesRtn,.p6
- LCLA &entriesRtn
- .p6
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._bufferLength DC i2'&bufferLength'
- &lab._bufferPtr DC i4'&bufferPtr'
- &lab._entriesRtn DC i1'&entriesRtn'
- MEND
- MACRO
- &lab PFIGetSVersionRec &async,&command,&result,&sessRefID,&afpVersionNum
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&sessRefID,.p4
- LCLA &sessRefID
- .p4
- AIF C:&afpVersionNum,.p5
- LCLA &afpVersionNum
- .p5
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._sessRefID DC i1'&sessRefID'
- &lab._afpVersionNum DC i2'&afpVersionNum'
- MEND
- MACRO
- &lab ListSessionsBuffer &refNum,&slotDrive,&volName,&volID
- AIF C:&refNum,.p1
- LCLA &refNum
- .p1
- AIF C:&slotDrive,.p2
- LCLA &slotDrive
- .p2
- AIF C:&volName,.p3
- LCLA &volName
- .p3
- AIF C:&volID,.p4
- LCLA &volID
- .p4
- &lab DS 0
- &lab._refNum DC i1'&refNum'
- &lab._slotDrive DC i1'&slotDrive'
- &lab._volName DC i1'&volName'
- &lab._volID DC i2'&volID'
- MEND
- MACRO
- &lab RPMSetPrinterRec &async,&command,&result,&entityPtr,&rpmFlags,&flushInterval,&timeOut,&numberBuffers
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&entityPtr,.p4
- LCLA &entityPtr
- .p4
- AIF C:&rpmFlags,.p5
- LCLA &rpmFlags
- .p5
- AIF C:&flushInterval,.p6
- LCLA &flushInterval
- .p6
- AIF C:&timeOut,.p7
- LCLA &timeOut
- .p7
- AIF C:&numberBuffers,.p8
- LCLA &numberBuffers
- .p8
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._entityPtr DC i4'&entityPtr'
- &lab._rpmFlags DC i1'&rpmFlags'
- &lab._flushInterval DC i2'&flushInterval'
- &lab._timeOut DC i2'&timeOut'
- &lab._numberBuffers DC i2'&numberBuffers'
- MEND
- MACRO
- &lab RPMCloseSessionRec &async,&command,&result
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- MEND
- MACRO
- &lab RPMFlushSessionRec &async,&command,&result
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i1'&result'
- MEND
- MACRO
- &lab ZIPGetMyZoneRec &async,&command,&result,&completionPtr,&bufferPtr,&timeOut,&retry,&reserved
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&completionPtr,.p4
- LCLA &completionPtr
- .p4
- AIF C:&bufferPtr,.p5
- LCLA &bufferPtr
- .p5
- AIF C:&timeOut,.p6
- LCLA &timeOut
- .p6
- AIF C:&retry,.p7
- LCLA &retry
- .p7
- AIF C:&reserved,.p8
- LCLA &reserved
- .p8
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._completionPtr DC i4'&completionPtr'
- &lab._bufferPtr DC i4'&bufferPtr'
- &lab._timeOut DC i1'&timeOut'
- &lab._retry DC i1'&retry'
- &lab._reserved DC i2'&reserved'
- MEND
- MACRO
- &lab ZIPGetZoneListRec &async,&command,&result,&completionPtr,&bufferLength,&bufferPtr,&bridgeNodeID,&startIndex,&timeOut,&retry,&zonesFound,&reserved
- AIF C:&async,.p1
- LCLA &async
- .p1
- AIF C:&command,.p2
- LCLA &command
- .p2
- AIF C:&result,.p3
- LCLA &result
- .p3
- AIF C:&completionPtr,.p4
- LCLA &completionPtr
- .p4
- AIF C:&bufferLength,.p5
- LCLA &bufferLength
- .p5
- AIF C:&bufferPtr,.p6
- LCLA &bufferPtr
- .p6
- AIF C:&bridgeNodeID,.p7
- LCLA &bridgeNodeID
- .p7
- AIF C:&startIndex,.p8
- LCLA &startIndex
- .p8
- AIF C:&timeOut,.p9
- LCLA &timeOut
- .p9
- AIF C:&retry,.p10
- LCLA &retry
- .p10
- AIF C:&zonesFound,.p11
- LCLA &zonesFound
- .p11
- AIF C:&reserved,.p12
- LCLA &reserved
- .p12
- &lab DS 0
- &lab._async DC i1'&async'
- &lab._command DC i1'&command'
- &lab._result DC i2'&result'
- &lab._completionPtr DC i4'&completionPtr'
- &lab._bufferLength DC i2'&bufferLength'
- &lab._bufferPtr DC i4'&bufferPtr'
- &lab._bridgeNodeID DC i1'&bridgeNodeID'
- &lab._startIndex DC i2'&startIndex'
- &lab._timeOut DC i1'&timeOut'
- &lab._retry DC i1'&retry'
- &lab._zonesFound DC i2'&zonesFound'
- &lab._reserved DC i2'&reserved'
- MEND
- MACRO
- &lab CmdBlock &cmdLength,&cmdBlkAddr,&replyLength,&replyBuffer,&writeLength,&writeBuffer
- AIF C:&cmdLength,.p1
- LCLA &cmdLength
- .p1
- AIF C:&cmdBlkAddr,.p2
- LCLA &cmdBlkAddr
- .p2
- AIF C:&replyLength,.p3
- LCLA &replyLength
- .p3
- AIF C:&replyBuffer,.p4
- LCLA &replyBuffer
- .p4
- AIF C:&writeLength,.p5
- LCLA &writeLength
- .p5
- AIF C:&writeBuffer,.p6
- LCLA &writeBuffer
- .p6
- &lab DS 0
- &lab._cmdLength DC i2'&cmdLength'
- &lab._cmdBlkAddr DC i4'&cmdBlkAddr'
- &lab._replyLength DC i2'&replyLength'
- &lab._replyBuffer DC i4'&replyBuffer'
- &lab._writeLength DC i2'&writeLength'
- &lab._writeBuffer DC i4'&writeBuffer'
- MEND
- MACRO
- &lab BufferControlRec &pCount,&fstNum,&commandNum,&refNum,&flags
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&fstNum,.p2
- LCLA &fstNum
- .p2
- AIF C:&commandNum,.p3
- LCLA &commandNum
- .p3
- AIF C:&refNum,.p4
- LCLA &refNum
- .p4
- AIF C:&flags,.p5
- LCLA &flags
- .p5
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._fstNum DC i2'&fstNum'
- &lab._commandNum DC i2'&commandNum'
- &lab._refNum DC i2'&refNum'
- &lab._flags DC i2'&flags'
- MEND
- MACRO
- &lab SpecialOpenForkRec &pCount,&fstNum,&commandNum,&refNum,&pathname,&accessMode,&forkNum
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&fstNum,.p2
- LCLA &fstNum
- .p2
- AIF C:&commandNum,.p3
- LCLA &commandNum
- .p3
- AIF C:&refNum,.p4
- LCLA &refNum
- .p4
- AIF C:&pathname,.p5
- LCLA &pathname
- .p5
- AIF C:&accessMode,.p6
- LCLA &accessMode
- .p6
- AIF C:&forkNum,.p7
- LCLA &forkNum
- .p7
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._fstNum DC i2'&fstNum'
- &lab._commandNum DC i2'&commandNum'
- &lab._refNum DC i2'&refNum'
- &lab._pathname DC i4'&pathname'
- &lab._accessMode DC i2'&accessMode'
- &lab._forkNum DC i2'&forkNum'
- MEND
- MACRO
- &lab ByteRangeLockRec &pCount,&fstNum,&commandNum,&refNum,&lockFlag,&fileOffset,&rangeLength,&rangeStart
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&fstNum,.p2
- LCLA &fstNum
- .p2
- AIF C:&commandNum,.p3
- LCLA &commandNum
- .p3
- AIF C:&refNum,.p4
- LCLA &refNum
- .p4
- AIF C:&lockFlag,.p5
- LCLA &lockFlag
- .p5
- AIF C:&fileOffset,.p6
- LCLA &fileOffset
- .p6
- AIF C:&rangeLength,.p7
- LCLA &rangeLength
- .p7
- AIF C:&rangeStart,.p8
- LCLA &rangeStart
- .p8
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._fstNum DC i2'&fstNum'
- &lab._commandNum DC i2'&commandNum'
- &lab._refNum DC i2'&refNum'
- &lab._lockFlag DC i2'&lockFlag'
- &lab._fileOffset DC i4'&fileOffset'
- &lab._rangeLength DC i4'&rangeLength'
- &lab._rangeStart DC i4'&rangeStart'
- MEND
- MACRO
- &lab GetAccessRightsRec &userSummary,&world,&group,&owner
- AIF C:&userSummary,.p1
- LCLA &userSummary
- .p1
- AIF C:&world,.p2
- LCLA &world
- .p2
- AIF C:&group,.p3
- LCLA &group
- .p3
- AIF C:&owner,.p4
- LCLA &owner
- .p4
- &lab DS 0
- &lab._userSummary DC i1'&userSummary'
- &lab._world DC i1'&world'
- &lab._group DC i1'&group'
- &lab._owner DC i1'&owner'
- MEND
- MACRO
- &lab GetPrivilegesRec &pCount,&fstNum,&commandNum,&pathname,&accessRights_reserved,&accessRights_world,&accessRights_group,&accessRights_owner,&ownerName,&groupName
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&fstNum,.p2
- LCLA &fstNum
- .p2
- AIF C:&commandNum,.p3
- LCLA &commandNum
- .p3
- AIF C:&pathname,.p4
- LCLA &pathname
- .p4
- AIF C:&accessRights_reserved,.p5
- LCLA &accessRights_reserved
- .p5
- AIF C:&accessRights_world,.p6
- LCLA &accessRights_world
- .p6
- AIF C:&accessRights_group,.p7
- LCLA &accessRights_group
- .p7
- AIF C:&accessRights_owner,.p8
- LCLA &accessRights_owner
- .p8
- AIF C:&ownerName,.p9
- LCLA &ownerName
- .p9
- AIF C:&groupName,.p10
- LCLA &groupName
- .p10
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._fstNum DC i2'&fstNum'
- &lab._commandNum DC i2'&commandNum'
- &lab._pathname DC i4'&pathname'
- &lab._accessRights GetAccessRightsRec &accessRights_reserved,&accessRights_world,&accessRights_group,&accessRights_owner
- &lab._ownerName DC i4'&ownerName'
- &lab._groupName DC i4'&groupName'
- MEND
- MACRO
- &lab SetAccessRightsRec &reserved,&world,&group,&owner
- AIF C:&reserved,.p1
- LCLA &reserved
- .p1
- AIF C:&world,.p2
- LCLA &world
- .p2
- AIF C:&group,.p3
- LCLA &group
- .p3
- AIF C:&owner,.p4
- LCLA &owner
- .p4
- &lab DS 0
- &lab._reserved DC i1'&reserved'
- &lab._world DC i1'&world'
- &lab._group DC i1'&group'
- &lab._owner DC i1'&owner'
- MEND
- MACRO
- &lab SetPrivilegesRec &pCount,&fstNum,&commandNum,&pathname,&accessRights_userSummary,&accessRights_world,&accessRights_group,&accessRights_owner,&ownerName,&groupName
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&fstNum,.p2
- LCLA &fstNum
- .p2
- AIF C:&commandNum,.p3
- LCLA &commandNum
- .p3
- AIF C:&pathname,.p4
- LCLA &pathname
- .p4
- AIF C:&accessRights_userSummary,.p5
- LCLA &accessRights_userSummary
- .p5
- AIF C:&accessRights_world,.p6
- LCLA &accessRights_world
- .p6
- AIF C:&accessRights_group,.p7
- LCLA &accessRights_group
- .p7
- AIF C:&accessRights_owner,.p8
- LCLA &accessRights_owner
- .p8
- AIF C:&ownerName,.p9
- LCLA &ownerName
- .p9
- AIF C:&groupName,.p10
- LCLA &groupName
- .p10
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._fstNum DC i2'&fstNum'
- &lab._commandNum DC i2'&commandNum'
- &lab._pathname DC i4'&pathname'
- &lab._accessRights SetAccessRightsRec &accessRights_userSummary,&accessRights_world,&accessRights_group,&accessRights_owner
- &lab._ownerName DC i4'&ownerName'
- &lab._groupName DC i4'&groupName'
- MEND
- MACRO
- &lab UserInfoRec &pCount,&fstNum,&commandNum,&deviceNum,&userName,&primaryGroupName
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&fstNum,.p2
- LCLA &fstNum
- .p2
- AIF C:&commandNum,.p3
- LCLA &commandNum
- .p3
- AIF C:&deviceNum,.p4
- LCLA &deviceNum
- .p4
- AIF C:&userName,.p5
- LCLA &userName
- .p5
- AIF C:&primaryGroupName,.p6
- LCLA &primaryGroupName
- .p6
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._fstNum DC i2'&fstNum'
- &lab._commandNum DC i2'&commandNum'
- &lab._deviceNum DC i2'&deviceNum'
- &lab._userName DC i4'&userName'
- &lab._primaryGroupName DC i4'&primaryGroupName'
- MEND
- MACRO
- &lab CopyFileRec &pCount,&fstNum,&commandNum,&sourcePathname,&destPathname
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&fstNum,.p2
- LCLA &fstNum
- .p2
- AIF C:&commandNum,.p3
- LCLA &commandNum
- .p3
- AIF C:&sourcePathname,.p4
- LCLA &sourcePathname
- .p4
- AIF C:&destPathname,.p5
- LCLA &destPathname
- .p5
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._fstNum DC i2'&fstNum'
- &lab._commandNum DC i2'&commandNum'
- &lab._sourcePathname DC i4'&sourcePathname'
- &lab._destPathname DC i4'&destPathname'
- MEND
- MACRO
- &lab GetUserPathRec &pCount,&fstNum,&commandNum,&prefix
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&fstNum,.p2
- LCLA &fstNum
- .p2
- AIF C:&commandNum,.p3
- LCLA &commandNum
- .p3
- AIF C:&prefix,.p4
- LCLA &prefix
- .p4
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._fstNum DC i2'&fstNum'
- &lab._commandNum DC i2'&commandNum'
- &lab._prefix DC i4'&prefix'
- MEND
- MACRO
- &lab DesktopRec &pCount,&fstNum,&commandNum,&desktopRefNum,&pathname
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&fstNum,.p2
- LCLA &fstNum
- .p2
- AIF C:&commandNum,.p3
- LCLA &commandNum
- .p3
- AIF C:&desktopRefNum,.p4
- LCLA &desktopRefNum
- .p4
- AIF C:&pathname,.p5
- LCLA &pathname
- .p5
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._fstNum DC i2'&fstNum'
- &lab._commandNum DC i2'&commandNum'
- &lab._desktopRefNum DC i2'&desktopRefNum'
- &lab._pathname DC i4'&pathname'
- MEND
- MACRO
- &lab GetCommentRec &pCount,&fstNum,&commandNum,&desktopRefNum,&pathname,&comment
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&fstNum,.p2
- LCLA &fstNum
- .p2
- AIF C:&commandNum,.p3
- LCLA &commandNum
- .p3
- AIF C:&desktopRefNum,.p4
- LCLA &desktopRefNum
- .p4
- AIF C:&pathname,.p5
- LCLA &pathname
- .p5
- AIF C:&comment,.p6
- LCLA &comment
- .p6
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._fstNum DC i2'&fstNum'
- &lab._commandNum DC i2'&commandNum'
- &lab._desktopRefNum DC i2'&desktopRefNum'
- &lab._pathname DC i4'&pathname'
- &lab._comment DC i4'&comment'
- MEND
- MACRO
- &lab SetCommentRec &pCount,&fstNum,&commandNum,&desktopRefNum,&pathname,&comment
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&fstNum,.p2
- LCLA &fstNum
- .p2
- AIF C:&commandNum,.p3
- LCLA &commandNum
- .p3
- AIF C:&desktopRefNum,.p4
- LCLA &desktopRefNum
- .p4
- AIF C:&pathname,.p5
- LCLA &pathname
- .p5
- AIF C:&comment,.p6
- LCLA &comment
- .p6
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._fstNum DC i2'&fstNum'
- &lab._commandNum DC i2'&commandNum'
- &lab._desktopRefNum DC i2'&desktopRefNum'
- &lab._pathname DC i4'&pathname'
- &lab._comment DC i4'&comment'
- MEND
- MACRO
- &lab GetServerNameRec &pCount,&fstNum,&commandNum,&pathname,&serverName,&zoneName
- AIF C:&pCount,.p1
- LCLA &pCount
- .p1
- AIF C:&fstNum,.p2
- LCLA &fstNum
- .p2
- AIF C:&commandNum,.p3
- LCLA &commandNum
- .p3
- AIF C:&pathname,.p4
- LCLA &pathname
- .p4
- AIF C:&serverName,.p5
- LCLA &serverName
- .p5
- AIF C:&zoneName,.p6
- LCLA &zoneName
- .p6
- &lab DS 0
- &lab._pCount DC i2'&pCount'
- &lab._fstNum DC i2'&fstNum'
- &lab._commandNum DC i2'&commandNum'
- &lab._pathname DC i4'&pathname'
- &lab._serverName DC i4'&serverName'
- &lab._zoneName DC i4'&zoneName'
- MEND
- MACRO
- &lab ASOptionListRec &bufferSize,&dataSize,&theFileSysID,&finderInfo,&parentDirID,&accessRights
- AIF C:&bufferSize,.p1
- LCLA &bufferSize
- .p1
- AIF C:&dataSize,.p2
- LCLA &dataSize
- .p2
- AIF C:&theFileSysID,.p3
- LCLA &theFileSysID
- .p3
- AIF C:&finderInfo,.p4
- LCLA &finderInfo
- .p4
- AIF C:&parentDirID,.p5
- LCLA &parentDirID
- .p5
- AIF C:&accessRights,.p6
- LCLA &accessRights
- .p6
- &lab DS 0
- &lab._bufferSize DC i2'&bufferSize'
- &lab._dataSize DC i2'&dataSize'
- &lab._theFileSysID DC i2'&theFileSysID'
- &lab._finderInfo DC i1'&finderInfo'
- &lab._parentDirID DC i4'&parentDirID'
- &lab._accessRights DC i4'&accessRights'
- MEND
-
- MACRO
- &lab decform &style,&digits
- AIF C:&style,.p1
- LCLA &style
- .p1
- AIF C:&digits,.p2
- LCLA &digits
- .p2
- &lab DS 0
- &lab._style DC i2'&style'
- &lab._digits DC i2'&digits'
- MEND
- MACRO
- &lab XCMDBlock ¶mCount,¶ms,&returnValue,&passFlag,&userID
- AIF C:¶mCount,.p1
- LCLA ¶mCount
- .p1
- AIF C:¶ms,.p2
- LCLA ¶ms
- .p2
- AIF C:&returnValue,.p3
- LCLA &returnValue
- .p3
- AIF C:&passFlag,.p4
- LCLA &passFlag
- .p4
- AIF C:&userID,.p5
- LCLA &userID
- .p5
- &lab DS 0
- &lab._paramCount DC i2'¶mCount'
- &lab._params DC i4'¶ms'
- &lab._returnValue DC i4'&returnValue'
- &lab._passFlag DC i2'&passFlag'
- &lab._userID DC i2'&userID'
- MEND
-